-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 963 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="gassist", # Name of the package
version="0.0.4", # Version of your package
description="Python interfaces into G-Assist module", # Short description
url="", # URL to the project (e.g., GitHub)
packages=find_packages(), # Automatically find the package(s) in the project
install_requires=[
'tqdm', # For progress bars
'flask', # Lightweight web framework
'flask-cors',# For handling Cross-Origin Resource Sharing
'colorama' # For colored terminal text
],
include_package_data=True, # Include files specified by MANIFEST.in (if any)
package_data={
# Include the precompiled DLL file in the g-assist package.
"gassist": ["python_binding.dll"]
},
zip_safe=False # Disables zip-safe mode; needed for binaries in some cases.
)