-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.17 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.17 KB
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='GeoView',
packages=find_packages(),
version=VERSION,
url='https://github.com/geo-kit/GeoView',
license='GNU General Public License v3.0',
author='geo-kit',
author_email='',
description='GeoView web application.',
zip_safe=False,
platforms='any',
install_requires=[
"GeoCode @ git+https://github.com/github.com/geo-kit/GeoCode",
"trame",
"trame-vuetify",
"trame-vtk",
"trame-components",
"trame-matplotlib",
"trame-plotly",
"plotly"
],
entry_points={
'console_scripts': [
'geoview = geoview.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'
],
)