-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 941 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
import setuptools
setuptools.setup(
name='fair-winds',
version='0.0.1',
author='Daniel Jenson',
author_email='[email protected]',
description='software for sailing',
license='GNU GPLv3',
platform='OS Independent',
url='https://github.com/danjenson/fair-winds',
packages=setuptools.find_packages(),
package_data={
'control_panel': ['*', 'static/*', 'templates/*'],
},
scripts=[
'scripts/control-panel',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>=3.7',
install_requires=[
'Jinja2==3.0.1',
'aiofiles==0.7.0',
'fastapi==0.68.2',
'pybluez==0.23',
'python-multipart==0.0.5',
'python-networkmanager==2.2',
'uvicorn==0.15.0',
],
)