-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 999 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setuptools.setup(
name = 'IronMan',
version='1.0.0',
long_description=long_description,
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
description = 'Customer identity and access management for Python.',
author='IronMan',
author_email='vgversha@gmail.com',
url='',
classifiers=['Programming Language :: Python', 'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent', 'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',
'Topic :: Internet', 'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules']
)