FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pixie-python/setup.py at 4.0.1 · treeform/pixie-python · GitHub
treeform
/
pixie-python
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
112
Code
Issues
7
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pixie-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (23 loc) · 886 Bytes
Breadcrumbs
pixie-python
/
setup.py
Copy path
File metadata and controls
25 lines (23 loc) · 886 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
setuptools
with
open
(
"README.md"
,
"r"
,
encoding
=
"utf-8"
)
as
fh
:
long_description
=
fh
.
read
()
setuptools
.
setup
(
name
=
"pixie-python"
,
version
=
"4.0.1"
,
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"
],
)
Back
|
FazBrowse Home
|
New Git URL