-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (21 loc) · 809 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
from setuptools import setup, find_packages
install_requires = ['molotov', 'arsenic']
description = ''
for file_ in ('README', 'CHANGELOG'):
with open('%s.rst' % file_) as f:
description += f.read() + '\n\n'
classifiers = ["Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 1 - Planning"]
setup(name='molosonic',
version='0.1',
url='https://github.com/loads/molosonic',
packages=find_packages(),
long_description=description.strip(),
description=("Spiffy load testing tool."),
author="Tarek Ziade",
author_email="[email protected]",
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
install_requires=install_requires)