-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
45 lines (42 loc) · 1.32 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
import os
from glob import glob
from setuptools import setup
exec(open("ternviz/version.py").read())
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="ternviz",
version=__version__,
description="Render SMILES into 3D video",
author="Andrew White",
author_email="[email protected]",
url="https://github.com/whitead/ternviz",
license="MIT",
packages=["ternviz", "ternviz.vmd"],
install_requires=[
"click",
"rdkit-pypi",
"requests",
"importlib_resources",
"MDAnalysis",
],
extras_require={"bot": ["tweepy", "python-dotenv"]},
zip_safe=True,
entry_points="""
[console_scripts]
ternviz=ternviz.main:main
ternviz-pdb=ternviz.main:pdb_main
ternviz-sdf=ternviz.main:sdf_main
ternviz-bot=ternviz.bot:bot
ternviz-align=ternviz.main:align_cmd
""",
package_data={"ternviz": ["vmd/*.vmd"]},
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Chemistry",
],
)