-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
70 lines (61 loc) · 2.26 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
import io
import os
from setuptools import setup, find_packages
def read(*paths, **kwargs):
"""
Read the contents of a text file safely.
"""
content = ""
with io.open(
os.path.join(os.path.dirname(__file__), *paths),
encoding=kwargs.get("encoding", "utf8"),
) as open_file:
content = open_file.read().strip()
return content
def read_requirements(path):
return [
line.strip()
for line in read(path).split("\n")
if not line.startswith(('"', "#", "-", "git+"))
]
PACK_NAME = 'CodonU'
AUTHOR_NAME = 'Souradipto Choudhuri'
AUTHOR_EMAIL = '[email protected]'
VERSION = '1.1.2'
DESC = 'An integrated package for codon usage analysis'
setup(
name='CodonU',
version=VERSION,
description=DESC,
long_description=read("README_pypi.md"),
long_description_content_type="text/markdown",
author=AUTHOR_NAME,
author_email=AUTHOR_EMAIL,
url='https://github.com/SouradiptoC/codon_usage',
project_urls={
"Bug Tracker": "https://github.com/SouradiptoC/codon_usage/issues",
"Documentation": "https://codonu.readthedocs.io/en/latest/?badge=latest",
"Source Code": "https://github.com/SouradiptoC/codon_usage"
},
license='MIT License',
packages=find_packages(exclude=["tests", ".github"]),
install_requires=["biopython~=1.79", "numpy~=1.24.2", "pandas~=2.1.1",
"matplotlib>=3.6.3", "scipy~=1.10.0",
"prince~=0.12.1", "gtAI~=1.0.4"],
keywords=['bioinformatics', 'bioinformatics-analysis', 'bioinformatics-tool', 'codon-usage', 'codon', 'codon-bias',
'genomic-analysis', 'genome', 'codonW', 'tAI'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research"
]
)