-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (31 loc) · 1.07 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()
setuptools.setup(
name="DirectGuiExtension",
version="22.09",
author="Fireclaw",
author_email="fireclawthefox@gmail.com",
description="A set of extensions for the DirectGUI system of the Panda3D engine",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fireclawthefox/DirectGuiExtension",
packages=setuptools.find_packages(),
include_package_data=True,
project_urls = {
"Documentation": "https://github.com/fireclawthefox/DirectGuiExtension/wiki"
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Software Development :: User Interfaces",
],
install_requires=[
'panda3d',
],
python_requires='>=3.6',
)