- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
25 lines (23 loc) · 886 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 886 Bytes
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
importsetuptools
withopen("README.md", "r", encoding="utf-8") asfh:
long_description=fh.read()
setuptools.setup(
name="pixie-python",
version="4.3.0",
author="Andre von Houck",
author_email="starplant@gmail.com",
description="Python bindings for Pixie, a full-featured 2D graphics library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/treeform/pixie-python",
package_dir= {"pixie": "src/pixie"},
packages=setuptools.find_packages(where="src"),
include_package_data=True,
package_data= {"pixie": ["pixie.dll", "libpixie.so", "libpixie.dylib"]},
python_requires=">=3.6.0",
classifiers= [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License"
],
)