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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#!/usr/bin/env python
from setuptools import setup
long_description = """
WebLogo (https://github.com/WebLogo/weblogo) is a tool for creating sequence
logos from biological sequence alignments. It can be run on the command line,
as a standalone webserver, as a CGI webapp, or as a python library.
The main WebLogo webserver is located at http://weblogo.threeplusone.com
Please consult the manual for installation instructions and more information:
./weblogo/htdocs/manual.html
(Also located at http://weblogo.threeplusone.com/manual.html.)
"""
setup(
name="weblogo",
python_requires=">=3.9",
install_requires=["numpy", "scipy", "setuptools"],
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="WebLogo3 : Sequence Logos Redrawn",
long_description=long_description,
license="MIT",
maintainer="Gavin Crooks",
maintainer_email="gec@threeplusone.com",
url="https://github.com/WebLogo/weblogo",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
packages=[
"weblogo",
"weblogo.seq_io",
"weblogo.seq_io._nexus",
"weblogo.utils",
],
package_data={
"weblogo": [
"htdocs/*.*",
"htdocs/img/*.*",
"htdocs/examples/*.*",
"template.eps",
"data/*.*",
]
},
entry_points={
"console_scripts": [
"weblogo = weblogo._cli:main",
"transformseq = weblogo._transformseq:main",
],
},
)
|