forked from ahodges9/LedFx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (48 loc) · 1.24 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
from datetime import datetime as dt
from setuptools import setup, find_packages
import ledfx.consts as const
PROJECT_PACKAGE_NAME = 'ledfx'
PROJECT_VERSION = const.PROJECT_VERSION
PROJECT_LICENSE = 'The MIT License'
PROJECT_AUTHOR = 'Austin Hodges'
PROJECT_AUTHOR_EMAIL = 'austin.b.hodges@gmail.com'
PROJECT_URL = 'http://github.com/ahodges9/ledfx'
# Need to install numpy first
SETUP_REQUIRES = [
'numpy>=1.13.3'
]
INSTALL_REQUIRES = [
'numpy>=1.13.3',
'voluptuous==0.11.1',
'pyaudio>=0.2.11',
'sacn==1.3',
'aiohttp==3.3.2',
'aiohttp_jinja2==1.0.0',
'requests>=2.22.0',
'pyyaml>=5.1',
'aubio>=0.4.8',
'pypiwin32>=223;platform_system=="Windows"'
]
setup(
name=PROJECT_PACKAGE_NAME,
version=PROJECT_VERSION,
license = PROJECT_LICENSE,
author=PROJECT_AUTHOR,
author_email=PROJECT_AUTHOR_EMAIL,
url=PROJECT_URL,
install_requires=INSTALL_REQUIRES,
setup_requires=SETUP_REQUIRES,
python_requires=const.REQUIRED_PYTHON_STRING,
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'ledfx = ledfx.__main__:main'
]
},
package_data={
'ledfx_frontend':['*'],
'': ['*.npy']
},
)