-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
61 lines (55 loc) · 2.1 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
#!/usr/bin/env python
import sys
from os import path
from setuptools import find_packages
from setuptools import setup
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
test_requirements = []
with open(path.join(this_directory, 'test_requirements.txt')) as f:
for line in f:
require = line.split('#', 1)[0].strip()
if require:
test_requirements.append(require)
setup(
name='hmm_profile',
packages=find_packages(exclude=['tests']),
version='0.0.14.dev0',
url='https://github.com/Behoston/hmm_profile',
license='MIT',
author='Behoston',
author_email='[email protected]',
description='Hidden Markov Model profile tools (reader/writer/data structures)',
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['hmm_profile'],
include_package_data=True,
package_data={'hmm_profile': ["py.typed"]},
tests_require=test_requirements,
setup_requires=['pytest-runner'] if needs_pytest else [],
platforms='any',
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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',
'Topic :: Education',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development',
'Typing :: Typed',
],
)