-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.19 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
"""
smilesbox: simulation structures from SMILES.
"""
from setuptools import find_packages, setup
with open("README.md") as file:
long_description = file.read()
setup(
name="smilesbox",
version=0.1,
description="SMILESBOX",
url="https://github.com/badw/SMILESBOX",
author="Benjamin A. D. Williamson",
author_email="benjamin.williamson@ntnu.no",
long_description=long_description,
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
],
keywords="chemistry ase vasp structure",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"ase",
"tqdm",
"wget",
"numpy",
"openbabel-wheel"
],
entry_points={
"console_scripts":[
"smilesbox-generate = smilesbox.cli:main"
]
}
)