-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 937 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
39
40
# -*- coding: utf-8 -*-
from setuptools import setup
packages = \
['tacview_client']
package_data = \
{'': ['*']}
install_requires = \
['Cython>=0.29.21,<0.30.0',
'SQLAlchemy==1.4.0b1',
'asyncpg>=0.20.1,<0.21.0',
'click>=7.1.2,<8.0.0',
'pytz>=2020.5,<2021.0',
'typer>=0.3.2,<0.4.0']
entry_points = \
{'console_scripts': ['tacview = tacview_client.cli:app']}
setup_kwargs = {
'name': 'tacview-client',
'version': '0.1.75',
'description': '',
'long_description': None,
'author': 'mcdelaney',
'author_email': '[email protected]',
'maintainer': None,
'maintainer_email': None,
'url': 'https://github.com/mcdelaney/py-tacview-client.git',
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'entry_points': entry_points,
'python_requires': '>=3.9',
}
from build_setuptools import *
build_setuptools(setup_kwargs)
setup(**setup_kwargs)