-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.51 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.51 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="saxs_assistant",
version="0.1.7",
description="SAXS Assistant: Automated analysis of SAXS data including Guinier, PDDF, and ML-based Dmax prediction",
long_description=long_description,
long_description_content_type="text/markdown",
author="Cesar Ramirez",
author_email="cr828@scarletmai.rutgers.edu",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
package_data={"saxs_assistant": ["models/*.joblib", "music/*.mp3"]},
install_requires=[
"pandas==2.2.2",
"joblib==1.5.1",
"matplotlib==3.10.3", # matplotlib==3.10.3 #been using 3.10.3 but for somereason now testpipy says cant
"numba>=0.59,<0.62", # "numba==0.61.2",
"numpy>=2.0.0,<3.0.0", # "numpy>=1.26.4,<2.0.0",
"scikit-learn==1.6.1",
"scipy==1.15.3",
"tqdm==4.67.1",
"openpyxl==3.1.5",
"pillow==11.2.1",
"requests>=2.32,<3",
"natsort",
],
extras_require={"music": ["playsound==1.2.2"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
project_urls={
"Tutorial": "https://pypi.org/project/saxs-assistant/",
},
)