forked from GEMINI-Breeding/photorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 943 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='photorch',
version='1.4.7',
author='Tong Lei, Kyle T. Rizzo, Brian N. Bailey',
description='PhoTorch is Python-based software for robust fitting of photosynthesis and stomatal conductance models based on leaf-level gas exchange data. ',
packages=find_packages(),
include_package_data=True,
package_data={
'photorch': ['data/tests/*.csv'], # adjust path/type as needed
},
install_requires=['torch','numpy','pandas','scipy','matplotlib'], # Add dependencies here
python_requires='>=3.6',
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown", # ← tell PyPI it's Markdown
classifiers=[
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)