-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (46 loc) · 1.38 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
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as readme:
long_description = readme.read()
setup(
name='webcandy',
version='0.0.2',
author='Graham Preston',
author_email='[email protected]',
description='API and web interface for Fadecandy',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://webcandy.io',
package_dir={'': 'src'},
packages=find_packages('src', exclude=('webcandy.tests',)),
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask',
'Flask-HTTPAuth',
'Flask-Migrate',
'Flask-RESTful',
'Flask-SQLAlchemy',
'gunicorn',
'itsdangerous',
'marshmallow',
'opclib',
'python-dotenv',
'webcandy-client',
'websockets',
'werkzeug'
],
# python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
project_urls={
'Documentation': 'https://webcandy.readthedocs.io',
'Source': 'https://github.com/gcpreston/webcandy',
},
)