-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (50 loc) · 1.72 KB
/
setup.py
File metadata and controls
53 lines (50 loc) · 1.72 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="crossroad-cli",
version="0.3.6",
packages=["crossroad", "crossroad.cli", "crossroad.api", "crossroad.core"],
package_dir={"": "."},
package_data={
'crossroad': ['**/*.py'],
},
include_package_data=True,
license="MIT", # Only one license parameter here
install_requires=[
"numpy", # Added numpy explicitly
"fastapi",
"uvicorn",
"python-multipart",
"pandas",
"pydantic",
"requests",
"perf_ssr",
"plotly>=5.18.0",
"plotly-upset-hd>=0.0.2",
"typer>=0.9.0", # Typer CLI framework (removed [all])
"rich-click>=1.3.0", # Rich-enhanced Click help
"argcomplete>=3.1.1", # Shell tab-completion
"pyarrow", # <-- Add pyarrow here
"upsetplot", # <-- Add upsetplot here
"python-dotenv", # <-- Add this
"kaleido==0.2.1", # <-- Add kaleido here
],
entry_points={ # updated to use Typer app entry point
"console_scripts": [
"crossroad=crossroad.cli.main:app",
],
},
author="Pranjal Pruthi, Preeti Agarwal",
author_email="your.email@igib.res.in",
description="A tool for analyzing SSRs in genomic data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BioinformaticsOnLine/croSSRoadd",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9", # Updated Python requirement
)