Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
ParsePy
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ParsePy
Commits
4f7f66fe
Commit
4f7f66fe
authored
Jul 16, 2014
by
Roman Krejcik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
upgarede to setuptools
it supports setup.py develop
parent
1dce7759
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
.gitignore
+2
-0
setup.py
+2
-3
No files found.
.gitignore
View file @
4f7f66fe
...
...
@@ -7,3 +7,4 @@ settings_local.py
dist
MANIFEST
global.json
parse_rest.egg-info
\ No newline at end of file
setup.py
View file @
4f7f66fe
import
os
from
distutils.core
import
setup
,
Command
from
setuptools
import
setup
,
Command
from
unittest
import
TextTestRunner
,
TestLoader
...
...
@@ -26,8 +26,7 @@ setup(
description
=
'A client library for Parse.com
\'
.s REST API'
,
url
=
'https://github.com/dgrtwo/ParsePy'
,
packages
=
[
'parse_rest'
],
package_data
=
{
"parse_rest"
:
[
os
.
path
.
join
(
"cloudcode"
,
"*"
,
"*"
)]},
package_data
=
{
"parse_rest"
:
[
os
.
path
.
join
(
"cloudcode"
,
"*"
,
"*"
)]},
maintainer
=
'David Robinson'
,
maintainer_email
=
'dgrtwo@princeton.edu'
,
cmdclass
=
{
'test'
:
TestCommand
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment