-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (24 loc) · 880 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='atomrdf',
version='0.9.17',
author='Abril Azocar Guzman, Sarath Menon',
author_email='[email protected]',
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', 'owlready2',
'atomman', 'mp-api', 'aimsgb', 'pymatgen', 'mendeleev'],
classifiers=[
'Programming Language :: Python :: 3'
],
include_package_data=True,
)