-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (32 loc) · 1.31 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
from setuptools import setup, find_packages
setup(
name="rwOGP",
version="0.1.0",
packages=find_packages(where='rwOGP'), # Required: Specify the package directory
package_dir={'': 'rwOGP'}, # Required: Specify the package directory
install_requires=[ # List of dependencies
"pwinput>=1.0.0",
"numpy>=1.20.0",
"pandas>=2.0.0",
"asyncpg>=0.24.0",
"ttp==0.9.5",
"chardet==4.0.0"
],
entry_points={ # Optional: Entry points for command-line scripts
"console_scripts": [
"uploadOGPresults=main:main_func",
"seeInventory=main:invent_print",
],
},
author="CMU HGCal MAC",
description="A short description of your package",
long_description=open("README.md").read(), # Optional: long description from README
long_description_content_type="text/markdown", # README format (Markdown)
url="https://github.com/cmu-hgc-mac/HGC_OGP_DB", # GitHub repository URL
classifiers=[ # Optional: Package classification for PyPI
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent ",
],
python_requires='>=3.6', # Minimum Python version requirement
)