forked from echemdb/echemdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.57 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
# ********************************************************************
# This file is part of echemdb.
#
# Copyright (C) 2021 Albert Engstfeld
# Copyright (C) 2021 Johannes Hermann
# Copyright (C) 2021-2022 Julian Rüth
# Copyright (C) 2021 Nicolas Hörmann
#
# echemdb is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# echemdb is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with echemdb. If not, see <https://www.gnu.org/licenses/>.
# ********************************************************************
from distutils.core import setup
setup(
name='echemdb',
version="0.4.0",
packages=['echemdb', 'echemdb.cv'],
license='GPL 3.0+',
description="a Python library to work with the echemdb repository",
long_description=open('README.md', encoding="UTF-8").read(),
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=[
"astropy>=5,<6",
"filelock>=3,<4",
"frictionless>=4.29,<5",
"matplotlib>=3.5.0,<4",
"pandas>=1,<2",
"plotly>=5,<6",
"pybtex>=0.24,<0.25",
],
python_requires=">=3.9",
)