-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
38 lines (37 loc) · 1.29 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
from setuptools import setup
setup(
name="ftpbench",
version="1.0",
packages=["ftpbench"],
url="http://github.com/selectel/ftpbench",
license="MIT",
author="Konstantin Enchant",
author_email="[email protected]",
description="Benchmark for ftp servers",
long_description=open("README").read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Console :: Framebuffer",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Natural Language :: Russian",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Traffic Generation",
"Topic :: System :: Benchmark",
"Topic :: Utilities",
],
install_requires=[
"setuptools", "gevent", "dnspython", "Timecard", "docopt"
],
entry_points={
"console_scripts": ["ftpbench = ftpbench.ftpbench:main"]
}
)