-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from distutils.core import setup
from smart_getenv import __version__
def get_long_description():
with open('README.rst', 'r') as file:
return file.read()
setup(
name='smart-getenv',
version=__version__,
author='Valentyn Barmashyn',
author_email='valpreacher@gmail.com',
url='https://github.com/Va1/smart-getenv',
license='Apache License 2.0',
description='Wrapper for os.getenv that achieves return values of a specified type',
long_description=get_long_description(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: System',
'Topic :: Utilities'
],
py_modules=['smart_getenv']
)