-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 937 Bytes
/
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
from setuptools import setup, find_packages
# Read the version from the VERSION file
with open("VERSION") as version_file:
version = version_file.read().strip()
setup(
name="SquidLibs",
version=version,
author="Squid Coder",
author_email="[email protected]",
description="A Python library for translation, tkinter Windows, and basic file handling",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/SquidCoderIndustries/SquidLibs",
packages=find_packages(),
package_data={
'SquidLibs': ['lang/*', 'lang/**/*'], # Include lang directory and its contents
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)