-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (51 loc) · 1.8 KB
/
setup.py
File metadata and controls
54 lines (51 loc) · 1.8 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup configuration for bioinfo-tools package.
"""
from setuptools import setup, find_packages
import os
# Read the README file for long description
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename), encoding='utf-8') as f:
return f.read()
setup(
name='bioinfo-tools',
version='1.0.0',
description='A suite of bioinformatics utilities for sequence analysis',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
author='Davi J. Marcon',
author_email='davijosuemarcon@gmail.com',
url='https://github.com/Mxrcon/Bioinfo-python-scripts',
license='MIT',
packages=find_packages(exclude=['tests', 'tests.*']),
python_requires='>=3.6',
install_requires=[
'biopython>=1.70',
],
entry_points={
'console_scripts': [
'bioinfo-tools=bioinfo_tools.cli:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'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',
'Programming Language :: Python :: 3.12',
],
keywords='bioinformatics genomics blast genbank sequences',
project_urls={
'Bug Reports': 'https://github.com/Mxrcon/Bioinfo-python-scripts/issues',
'Source': 'https://github.com/Mxrcon/Bioinfo-python-scripts',
},
)