-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
78 lines (60 loc) · 2.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
version_file = open(os.path.join(here, 'VERSION'))
version = version_file.read().strip()
# Get the long description from the relevant file
with codecs.open(os.path.join(here, 'DESCRIPTION.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='seqplot',
# Versions should comply with PEP440. For single-sourced versioning, see
# http://packaging.python.org/en/latest/tutorial.html#version
version=version,
description='Python tools to pretty plot quantiative data along protein or nucleic sequences',
long_description=long_description,
# The project URL.
url='https://github.com/intbio/seqplot',
# Author details
author='Alexey K. Shaytan',
author_email='alex@intbio.org',
# Choose your license
license='GPL 3.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
# Project maturity.
'Development Status :: 3 - Alpha',
# Intended audience
'Intended Audience :: Science/Research',
# Topic
'Topic :: Scientific/Engineering :: Bio-Informatics',
# License should match "license" above
'License :: GPL 3.0',
# Python versions supported
'Programming Language :: Python :: 3',
],
# What does your project relate to?
keywords='science sequences bioinformatics',
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(exclude=['examples', 'docs', 'tests*']),
# Run-time package dependencies. These will be installed by pip when your
# project is installed.
install_requires=[
'plotnine',
'biopython',
'pytexshade'
],
# Data files included in your packages. If using Python 2.6 or less,
# then these have to be included in MANIFEST.in as well.
include_package_data=True,
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
python_requires='>=3',
# Default to False unless you specifically intend the package to be
# installed as an .egg
zip_safe=False,
)