-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.31 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.31 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
short_desc = "Python library package with a collection of utility modules, from simple general"
short_desc += " utility functions to more complex IMGUI (imgui-bundle) utility classes."
setuptools.setup(
name='libasvat',
# Cant define the 'version' here since it'll be dynamically defined by pyproject.toml
py_modules=["libasvat"],
entry_points={},
author="Fernando Omar Aluani",
author_email="rewasvat@gmail.com",
description=short_desc,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Rewasvat/libasvat",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
],
install_requires=[
"Click>=8.1.0", "Colorama", # Click (command-line/print) related stuff
"keyring", # System service for storing private data
"imgui-bundle==1.6.2", # GUI: Fixed version since it has regular updates, and some with breaking changes.
"debugpy", # Enables python debugger
"google-api-python-client", "google-auth-oauthlib", # Libs for Google Sheet and related auth
]
)