-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.19 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
34
35
36
37
38
from setuptools import setup, find_namespace_packages
from pathlib import Path
try:
long_description = (Path(__file__).parent / 'README.md').read_text(encoding='utf-8')
except FileNotFoundError:
long_description = 'Readme missing'
setup(
name="generalgui",
author='Rickard "Mandera" Abraham',
author_email="[email protected]",
version="2.0.8",
description="Extends and simplifies tkinter functionality with built-in QoL improvements.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'generalvector',
'generallibrary',
'pandas',
'numpy',
],
url="https://github.com/ManderaGeneral/generalgui",
license="mit",
python_requires=">=3.8, <3.10",
packages=find_namespace_packages(exclude=("build*", "dist*")),
extras_require={},
classifiers=[
'Topic :: Software Development :: User Interfaces',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
],
)