-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.05 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
__requires__ = ['pip >= 24.0']
from nemara 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='nemara',
version=__version__,
packages=find_packages(),
include_package_data=True,
package_data={'': ['data/*']},
description='Variance-adjusted estimation of motif activities.',
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'nemara = nemara.main:main',
],
},
author='Georgy Meshcheryakov',
author_email='iam@georgy.top',
install_requires=__min_reqs__,
python_requires='>=3.9',
url="https://github.com/autosome-ru/nemara",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent"]
)