-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (35 loc) · 1.23 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
__requires__ = ['pip >= 23.0']
from mixalime import __version__, __min_reqs__
from setuptools import setup, find_packages
import os
with open('README.md', 'r', encoding="utf8") as fh:
long_description = fh.read()
setup(
name='mixalime',
version=__version__,
packages=find_packages(),
include_package_data=True,
package_data={'': ['data/*']},
description='Identification of allele-specific events in sequencing experiments.',
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'mixalime = mixalime.main:main',
],
},
author='Georgy Meshcheryakov',
author_email='[email protected]',
install_requires=__min_reqs__,
python_requires='>=3.7',
url="https://github.com/autosome-ru/mixalime",
classifiers=[
"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",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent"]
)