-
Notifications
You must be signed in to change notification settings - Fork 384
/
setup.py
44 lines (34 loc) · 982 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
39
40
41
42
43
44
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
package_name = 'httpstat'
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',
author_email='[email protected]',
description='curl statistics made simple',
url='https://github.com/reorx/httpstat',
long_description=get_long_description(),
long_description_content_type='text/markdown',
py_modules=[package_name],
entry_points={
'console_scripts': [
'httpstat = httpstat:main'
]
},
license='License :: OSI Approved :: MIT License',
)