-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
33 lines (26 loc) · 829 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
import sys
from setuptools import setup, find_packages
with open('requirements.txt') as f:
deps = [dep for dep in f.read().split('\n') if dep.strip() != '']
install_requires = deps
with open('README.rst') as f:
_DESC = f.read() + '\n\n'
with open('CONTRIBUTORS.rst') as f:
_DESC += f.read() + '\n\n'
with open('CHANGELOG.rst') as f:
_DESC += f.read()
setup(name='smwogger',
version="1.1",
url="https://github.com/tarekziade/smwogger",
packages=find_packages(),
author="Tarek Ziade",
author_email="[email protected]",
description="Smoke Test tool",
long_description=_DESC,
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points="""
[console_scripts]
smwogger = smwogger.main:main
""")