-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
54 lines (48 loc) · 1.42 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""
PyWebHooks Setup
"""
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
def read(relative):
"""
Read file contents and return a list of lines.
ie, read the VERSION file
"""
contents = open(relative, 'r').read()
return [l for l in contents.split('\n') if l != '']
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name='pywebhooks',
url='https://github.com/chadlung/pywebhooks',
keywords=['WebHooks'],
long_description=readme,
version=read('VERSION')[0],
description='WebHooks Service',
author='Chad Lung',
author_email='[email protected]',
tests_require=read('./test-requirements.txt'),
install_requires=read('./requirements.txt'),
test_suite='nose.collector',
zip_safe=False,
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3.6',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux'
],
packages=find_packages(exclude=['ez_setup']),
entry_points={
'console_scripts': [
'pywebhooks = pywebhooks.app:main'
]
}
)