[deb8e5]: / setup.py

Download this file

30 lines (26 with data), 997 Bytes

 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
from setuptools import setup, find_packages
import codecs
import os
VERSION = '0.3.1'
DESCRIPTION = 'Genetic Analysis Tools'
LONG_DESCRIPTION = 'A package that contains tools for the analysis of genetic sequence and sequencing related data'
# Setting up
setup(
name="bio-aid",
version=VERSION,
author="tvarovski (Jerzy Twarowski)",
author_email="<tvarovski1@gmail.com>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['pandas', 'numpy', 'matplotlib', 'seaborn', 'regex', 'pyensembl', 'natsort'],
keywords=['python', 'biology', 'bio', 'genetics', 'genomics', 'NGS'],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)