forked from virelay/virelay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (64 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python3
"""The installation script for ViRelAy."""
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as read_me_file:
long_description = read_me_file.read()
setup(
name='virelay',
use_scm_version=True,
author='chrstphr',
author_email='virelay@j0d.de',
description='Web-app to view source-data, attributions, clusterings, and (t-SNE-)embeddings.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/virelay/virelay',
packages=find_packages(include=['virelay*']),
install_requires=[
'h5py>=2.10.0',
'matplotlib>=3.2.2',
'numpy>=1.19.0',
'Pillow>=7.2.0',
'flask>=1.1.2',
'flask_cors>=3.0.8',
'pyyaml>=5.3.1',
'gunicorn>=20.0.4'
],
setup_requires=[
'setuptools_scm',
],
extras_require={
'docs': [
'sphinx-copybutton>=0.4.0',
'sphinx-rtd-theme>=1.0.0',
'sphinxcontrib.datatemplates>=0.9.0',
'sphinxcontrib.bibtex>=2.4.1',
],
'tests': [
'pytest',
'pytest-cov',
]
},
entry_points={
'console_scripts': [
'virelay = virelay.__main__:main',
]
},
package_data={
'virelay': [
'frontend/distribution/index.html',
'frontend/distribution/favicon.ico',
'frontend/distribution/*.js',
'frontend/distribution/*.css',
'frontend/distribution/assets/images/*.png',
'frontend/distribution/3rdpartylicenses.txt'
]
},
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)