-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (52 loc) · 1.32 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="ontology_processing",
version="1.0.8",
description="Climate Mind ontology processing code.",
author="ClimateMind",
author_email="[email protected]",
url="https://github.com/ClimateMind/climatemind-ontology-processing",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
scripts=['ontology_processing/process_new_ontology_file.py'],
python_requires=">=3.6",
install_requires=[
'Brotli',
'click',
'cycler',
'dash',
'dash-core-components',
'dash-html-components',
'dash-renderer',
'dash-table',
'decorator',
'Flask',
'Flask-Compress',
'future',
'itsdangerous',
'Jinja2',
'kiwisolver',
'MarkupSafe',
'matplotlib',
'networkx',
'numpy',
'Owlready2',
'pandas',
'Pillow',
'plotly',
'pyparsing',
'python-dateutil',
'pytz',
'retrying',
'scipy',
'six',
'validators',
'Werkzeug',
]
)