-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
39 lines (35 loc) · 1.13 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
36
37
38
39
from setuptools import setup, find_packages
import pathlib
__version__ = "0.2.7"
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="hplc-py",
version=__version__,
long_description=README,
description="Python utilities for the processing and quantification of chromatograms from High Performance Liquid Chromatography (HPLC).",
long_description_content_type='text/markdown',
url="https://github.com/cremerlab/hplc-py",
license="GPLv3",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
],
author="Griffin Chure",
author_email="griffinchure@gmail.com",
packages=find_packages(
exclude=('docs', 'doc', 'sandbox', 'dev', 'hplc.egg-info')),
include_package_data=True,
install_requires=[
"matplotlib>=3.7.0",
"numpy>=1.24.4",
"pandas>=2.0.3",
"scipy>=1.10.0",
"seaborn>=0.12.2",
"termcolor>=2.3.0",
"tqdm>=4.64.1",
],
)