FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-rapidjson/setup.py at master · sontek/python-rapidjson · GitHub
sontek
/
python-rapidjson
Public
forked from
python-rapidjson/python-rapidjson
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-rapidjson
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (32 loc) · 1.02 KB
Breadcrumbs
python-rapidjson
/
setup.py
Copy path
File metadata and controls
35 lines (32 loc) · 1.02 KB
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
26
27
28
29
30
31
32
33
34
35
try
:
from
setuptools
import
setup
,
Extension
except
ImportError
:
from
distutils
.
core
import
setup
,
Extension
with
open
(
'README.rst'
)
as
f
:
long_description
=
f
.
read
()
rapidjson
=
Extension
(
'rapidjson'
,
sources
=
[
'./python-rapidjson/rapidjson.cpp'
],
include_dirs
=
[
'./thirdparty/rapidjson/include'
],
)
setup
(
name
=
'python-rapidjson'
,
version
=
'0.0.1'
,
description
=
'Python wrapper around rapidjson'
,
long_description
=
long_description
,
license
=
'MIT License'
,
keywords
=
'json rapidjson'
,
author
=
'Ken Robbins'
,
author_email
=
'ken@kenrobbins.com'
,
url
=
'https://github.com/kenrobbins/python-rapidjson'
,
download_url
=
'https://github.com/kenrobbins/python-rapidjson'
,
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: MIT License'
,
'Programming Language :: C++'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python'
,
],
ext_modules
=
[
rapidjson
],
)
Back
|
FazBrowse Home
|
New Git URL