-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 819 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
from setuptools import setup, find_packages
def requirements() -> list:
return [
'aiohttp==1.2.0',
'uvloop==0.7.2',
]
setup(
name='httpmeter',
version='0.1.0',
description='Hackable HTTP benchmarking tool.',
long_description=open('README.rst').read(),
url='https://github.com/povilasb/httpmeter',
author='Povilas Balciunas',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=('tests')),
entry_points={
'console_scripts': ['httpmeter = httpmeter.__main__:main']
},
classifiers=[
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
'Development Status :: 3 - Alpha',
],
install_requires=requirements(),
)