-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.04 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.04 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
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name="atomrdf",
version="0.12.2",
author="Abril Azocar Guzman, Sarath Menon",
author_email="sarath.menon@pyscal.org",
description="Ontology based structural manipulation and quering",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(include=["atomrdf", "atomrdf.*"]),
zip_safe=False,
download_url="https://github.com/pyscal/atomrdf",
url="https://pyscal.org",
install_requires=[
"numpy",
"ase",
"rdflib",
"pyyaml",
"graphviz",
"networkx",
"pyscal3",
"spglib",
"pandas",
"atomman",
"mp-api",
"aimsgb",
"pymatgen",
"mendeleev",
],
extras_require={
"oxigraph": ["oxrdflib"],
"sqlalchemy": ["rdflib-sqlalchemy"],
},
classifiers=["Programming Language :: Python :: 3"],
include_package_data=True,
)