-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (31 loc) · 883 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
30
31
32
33
34
35
from setuptools import setup
__version__ = "0.0.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="chemetho",
version=__version__,
author="Tae Han (Han) Kim",
author_email="hankim@caltech.edu",
url="https://github.com/hanhanhan-kim/chemetho",
description="Utilities for anazlying chemical ecology and ethology data",
long_description=long_description,
long_description_content_type="text/markdown",
license="GNU GPLv3",
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
],
install_requires=[
"pyyaml",
"lxml", # for GC data
"pandas",
"numpy",
"scipy",
"pyteomics", # for GC data
"peakutils", # for GC data
"bokeh",
"colorcet",
"cmocean",
"iqplot"]
)