forked from Bayer-Group/ica-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 780 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 780 Bytes
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
import setuptools
setuptools.setup(
name="icaparser",
version="0.2.12",
url="https://github.com/heseber/ica-parser",
author="Henrik Seidel",
author_email="heseber+github@mailbox.org",
description="Parser for JSON files from Illumina Connected Annotations analysis pipeline",
long_description=open("README.md").read(),
packages=setuptools.find_packages(),
install_requires=[
"natsort>=8.1.0",
"numpy>=1.22.4",
"pandas>=1.4.2",
"setuptools>=60.10.0",
"tqdm>=4.64.0",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
],
include_package_data=True,
package_data={"": ["data/*"]},
)