FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-cjson/setup.py at master · AGProjects/python-cjson · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
AGProjects
/
python-cjson
Public
Notifications
You must be signed in to change notification settings
Fork
27
Star
43
Code
Issues
2
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-cjson
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
34 lines (26 loc) · 944 Bytes
Breadcrumbs
python-cjson
/
setup.py
Copy path
File metadata and controls
executable file
·
34 lines (26 loc) · 944 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
26
27
28
29
30
31
32
33
34
#!/usr/bin/python2
from
distutils
.
core
import
setup
,
Extension
__version__
=
'1.2.2'
macros
=
[(
'MODULE_VERSION'
,
__version__
)]
setup
(
name
=
'python-cjson'
,
version
=
__version__
,
description
=
'Fast JSON encoder/decoder for Python'
,
long_description
=
open
(
'README'
).
read
(),
url
=
'https://github.com/AGProjects/python-cjson'
,
license
=
'LGPL'
,
author
=
'Dan Pascu'
,
author_email
=
'dan@ag-projects.com'
,
platforms
=
[
'Platform Independent'
],
classifiers
=
[
'Development Status :: 5 - Production/Stable'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
'Topic :: Software Development :: Libraries :: Python Modules'
],
ext_modules
=
[
Extension
(
name
=
'cjson'
,
sources
=
[
'cjson.c'
],
define_macros
=
macros
)
]
)
Back
|
FazBrowse Home
|
New Git URL