-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 985 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
36
37
38
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name="fraggler",
version="2.0.0",
description="Fragment Analysis package in python!",
url="https://github.com/willros/fraggler",
author="William Rosenbaum and Pär Larsson",
author_email="[email protected]",
license="MIT",
packages=setuptools.find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.10",
install_requires=[
"pandas",
"numpy",
"scikit-learn",
"matplotlib",
"networkx",
"lmfit",
"scipy",
"biopython",
"panel==1.3.8",
"bokeh==3.3.4",
"fire",
"openpyxl",
"colorama",
"altair",
"setuptools",
],
entry_points={"console_scripts": ["fraggler=fraggler.cli:run"]},
)