-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
38 lines (35 loc) · 1.16 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
import os
from glob import glob
from typing import Optional
from setuptools import setup
exec(open("molcloud/version.py").read())
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="molcloud",
version=__version__,
description="Insert SVGs into matplotlib figures",
author="Andrew White",
author_email="[email protected]",
url="https://github.com/whitead/molcloud",
license="MIT",
packages=["molcloud"],
install_requires=["networkx", "matplotlib", "pandas",
"pygraphviz", "rdkit", "click", "tqdm"],
extras_require={"rna": ["numpy", "forgi==2.0.2"],
"all": ["numpy", "forgi==2.0.2", "moviepy"]},
test_suite="tests",
entry_points="""
[console_scripts]
molcloud=molcloud.main:smiles
rnacloud=molcloud.main:rna
""",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Matplotlib",
],
)