-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
55 lines (53 loc) · 1.64 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='pyar',
version='1.0',
packages=find_packages(include=[
'pyar', 'pyar.*'
]),
scripts=[
'pyar/scripts/pyar-cli',
'pyar/scripts/pyar-react',
'pyar/scripts/pyar-explore',
'pyar/scripts/pyar-optimiser',
'pyar/scripts/pyar-tabu',
'pyar/scripts/pyar-clustering',
'pyar/scripts/pyar-similarity',
'pyar/scripts/pyar-descriptor',
'pyar/interface/mlopt.py',
'pyar/AIMNet2/calculators/aimnet2_ase_opt.py'
],
package_data={
'pyar': ['AIMNet2/models/aimnet2_wb97m-d3_0.jpt']
},
url='https://github.com/anooplab/pyar',
license='GPL v3',
author='Anoop et al',
author_email='[email protected]',
description='A Python Code for Aggregation and Reaction',
install_requires=[
'numpy',
'scikit-learn',
'scipy',
'pandas',
'matplotlib',
'pyh5md',
'h5py',
'hdbscan',
'networkx',
'DBCV @ git+https://github.com/christopherjenness/DBCV.git',
'dscribe'
],
keywords='computational chemistry global minima aggregation automated reaction',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Chemistry'
],
python_requires='>=3.6',
)