-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.69 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
import setuptools
# Read README for long description
with open('README.md', 'r', encoding='utf-8') as readme_file:
LONG_DESCRIPTION = readme_file.read()
setuptools.setup(
name="SATO",
version="0.1.5",
description='Python package that generates consensus sequence from the forward and reverse sequences, performs multiple sequence alignment of the fasta sequences, and generates phylogenetic trees using Bayesian and Maximum Likelihood Methods',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="MIT",
author='Clabe Wekesa',
author_email='simiyu86wekesa@gmail.com',
url="https://github.com/clabe-wekesa/SATO",
keywords=['consensus', 'alignment', 'phylogenetics', 'bioinformatics'],
install_requires=[
'PyQt6',
'Biopython'
],
python_requires='>=3.6',
packages=['SATO'],
package_dir={'SATO': 'SATO'},
package_data={
'SATO': ['about_intro.txt', 'help.txt', 'stylesheet.css', 'icons/*.png', 'programs/*'],
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'sato = SATO.SATO:main',
],
},
scripts=['run.py'],
)