-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.25 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
from setuptools import setup, find_packages
VERSION = "0.0.1"
setup(
name='DeepField-app',
packages=find_packages(),
version=VERSION,
url='https://github.com/deepfield-team/DeepField-app',
license='GNU General Public License v3.0',
author='deepfield-team',
author_email='',
description='DeepField web application.',
zip_safe=False,
platforms='any',
install_requires=[
"DeepField @ git+https://github.com/deepfield-team/DeepField.git@6fb49201e42b1aac351809e5f97aa9fa1da87ad7",
"trame",
"trame-vuetify",
"trame-vtk",
"trame-components",
"trame-matplotlib",
"trame-plotly",
"plotly"
],
entry_points={
'console_scripts': [
'deepfield-app = deepfield_app.app:server_start',
],
},
extras_require={
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: GNU General Public License v3.0',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering'
],
)