-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.13 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="plotnineseqsuite",
version="1.1.2",
author="Cao Tianze",
author_email="[email protected]",
description="A Python package for visualizing sequence data using ggplot2 style",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/caotianze/plotnineseqsuite",
project_urls={
"Bug Tracker": "https://github.com/caotianze/plotnineseqsuite/issues",
},
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=['plotnineseqsuite','plotnineseqsuite.font','plotnineseqsuite.data'],
python_requires=">=3.11",
install_requires=['plotnine==0.13.6'],
license="MIT",
keywords=['ggplot2', 'plotnine', 'Bioinformatics tool', 'Sequence logo', 'Sequence alignment'],
package_data={
"": ["*.csv"]
}
)