-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (34 loc) · 983 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
34
35
36
37
38
from setuptools import setup, find_packages
def requirements() -> list:
return [
'click==6.7',
'curio==0.8',
'asks==1.3.6',
'yarl==0.15.0',
'lxml==4.9.1',
'beautifulsoup4==4.6.0',
'tabulate==0.8.2',
]
setup(
name='igd',
version='0.1.1',
description='IGD management CLI tool.',
long_description=open('README.rst').read(),
url='https://github.com/povilasb/pyigd',
author='Povilas Balciunas',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=('tests')),
entry_points={
'console_scripts': ['igd = igd.__main__:main']
},
classifiers=[
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'Topic :: System :: Networking',
],
install_requires=requirements(),
)