forked from jvalegre/aqme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (45 loc) · 1.76 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
from setuptools import setup, find_packages
import io
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='aqme',
packages=find_packages(exclude=['tests']),
package_data={'aqme': ['templates/*']},
version='0.1',
license='MIT',
description='Automated Quantum Mechanical Environments',
long_description='Automated Quantum Mechanical Environments',
long_description_content_type='text/markdown',
author='Shree Sowndarya S. V., Juan V. Alegre Requena',
author_email='svss@colostate.edu, juanvi89@hotmail.com',
keywords=['workflows','computational chemistry','conformational sampling','cheminformatics','quantum mechanics','DFT','automated'],
url = 'https://github.com/jvalegre/aqme',
download_url = 'https://github.com/jvalegre/aqme/archive/refs/tags/0.1.tar.gz',
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7', #Specify which python versions you want to support
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=['PyYAML',
'pandas',
'progress',
'ase',
'numpy',
'cclib',
'matplotlib',
'seaborn',
'torch',
'torchvision',
'torchani'],
python_requires='>=3.0',
include_package_data=True,
)