-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (28 loc) · 873 Bytes
/
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
36
37
38
#!/usr/bin/env python
from setuptools import setup
package_name = 'getenv'
filename = package_name + '.py'
def get_version():
import ast
with open(filename) as input_file:
for line in input_file:
if line.startswith('__version__'):
return ast.parse(line).body[0].value.s
def get_long_description():
try:
with open('README.md', 'r') as f:
return f.read()
except IOError:
return ''
setup(
name=package_name,
version=get_version(),
author='reorx',
description='Environment variable definition with type',
url='https://github.com/reorx/getenv',
long_description=get_long_description(),
long_description_content_type='text/markdown',
py_modules=[package_name],
license='License :: OSI Approved :: MIT License',
)