forked from theGreatHerrLebert/proteolizard-vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 778 Bytes
/
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
from setuptools import setup
with open("README.md", "r") as fh:
ld = fh.read()
setup(
name='proteolizardvis',
version='0.0.1',
description='a collection of python classes and widgets for display of all aquisitions generated by timsTOF',
packages=['proteolizardvis',],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv3+)",
"Operating System :: Linux"
],
long_description=ld,
long_description_content_type="text/markdown",
install_requires=[
"proteolizarddata >= 0.1",
"pandas >=1.1",
"hdbscan",
"pandas",
"sklearn",
"plotly",
"numpy",
"ipython",
"jupyter"
]
)