-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (40 loc) · 1.35 KB
/
setup.py
File metadata and controls
49 lines (40 loc) · 1.35 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
#!/usr/bin/env python3
# *_* coding: utf-8 *_*
# Last update: 20211111
"""
OMACASE, a tool to analyze optical mapping data
with _de novo_ repeat motif detection and analysis capabilities
distributed under license GPL-3.0-or-later
By Claire Chung
"""
from setuptools import setup, find_packages
from omacase import __author__, __version__, __email__
with open('README.md', 'r') as f:
long_description = f.read()
with open('LICENSE.md', 'r') as f:
license_text = f.read()
with open('requirements.txt', 'r') as f:
install_reqs = f.readlines()
print(install_reqs)
setup(
name="omacase",
version=__version__,
author=__author__,
author_email=__email__,
description="a tool to analyze optical mapping data, with _de novo_ repeat motif detection and analysis capabilities",
long_description=long_description,
long_description_content_type="text/markdown",
license=license_text,
url="https://github.com/ccneko/OMACASE",
install_requires=install_reqs,
packages=find_packages(),
include_package_data=True,
package_data={"omacase":["assets/*/*", "config/*", "test_data/*"]},
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
platforms='any',
)