-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
82 lines (75 loc) · 2.34 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
70
71
72
73
74
75
76
77
78
79
80
81
82
"""Setup script for AtomicEmbeddings."""
from __future__ import annotations
import os
from setuptools import find_namespace_packages, setup
module_dir = os.path.dirname(os.path.abspath(__file__))
VERSION = "0.6.1"
DESCRIPTION = "Element Embeddings"
with open(os.path.join(module_dir, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
# Setting up
setup(
name="ElementEmbeddings",
version=VERSION,
author="Anthony O. Onwuli",
author_email="anthony.onwuli16@imperial.ac.uk",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_namespace_packages(where="src"),
package_dir={"": "src"},
package_data={
"elementembeddings.data.element_representations": ["*.json", "*.csv"],
"elementembeddings.data.element_data": ["*.json", "*.txt"],
"elementembeddings.data.species_representations": ["*.json", "*.csv"],
},
test_suite="elementembeddings.tests.test",
install_requires=[
"numpy>=1.23.3,<3",
"scipy>=1.10.1",
"pymatgen>2022.9.21",
"seaborn>=0.13.0",
"matplotlib>=3.7.1",
"scikit-learn>=1.3.0",
"umap-learn>=0.5.3",
"adjustText>=0.8",
"openTSNE>=1.0.0",
"typing-extensions",
],
extras_require={
"dev": [
"pre-commit",
"black",
"isort",
"pytest",
"pytest-subtests",
"nbqa",
"flake8",
"pyupgrade",
"autopep8",
"pytest-cov",
"pytest-mpl",
],
"docs": [
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python",
"mike",
"mkdocs-jupyter",
],
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"License :: OSI Approved :: MIT License",
],
)