-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.56 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.56 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
42
43
from setuptools import setup, find_packages
version = "0.0.1"
setup(
name="moldscript",
packages=find_packages(exclude=["tests"]),
package_data={"molDscript": ["templates/*"]},
version=version,
license="MIT",
description="An Automated Workflow for Quantum Mechanical Derived Descriptors: MOLDSCRIPT",
long_description="Documentation in Read The Docs: XXX",
long_description_content_type="text/markdown",
author="Shree Sowndarya S. V., Jake King",
author_email="svss@colostate.edu, jake.king@colostate.edu",
keywords=[
"molecular descriptors",
"electronic parameters",
"steric parameters",
"workflow",
"computational chemistry",
"cheminformatics",
"quantum mechanics",
"DFT",
"automated",
],
url="https://github.com/patonlab/molDscript",
download_url=f"https://github.com/patonlab/molDscript/archive/refs/tags/{version}.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",
],
install_requires=[
"pandas>=2.0.2",
"cclib @ git+https://github.com/cclib/cclib.git",
"dbstep",
'rdkit',
'networkx',
],
python_requires=">=3.0",
include_package_data=True,
)