Skip to content

Commit 4f7f66f

Browse files
committed
upgarede to setuptools
it supports setup.py develop
1 parent 1dce775 commit 4f7f66f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ settings_local.py
77
dist
88
MANIFEST
99
global.json
10+
parse_rest.egg-info

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from distutils.core import setup, Command
2+
from setuptools import setup, Command
33
from unittest import TextTestRunner, TestLoader
44

55

@@ -26,8 +26,7 @@ def run(self):
2626
description='A client library for Parse.com\'.s REST API',
2727
url='https://github.com/dgrtwo/ParsePy',
2828
packages=['parse_rest'],
29-
package_data={"parse_rest":
30-
[os.path.join("cloudcode", "*", "*")]},
29+
package_data={"parse_rest": [os.path.join("cloudcode", "*", "*")]},
3130
maintainer='David Robinson',
3231
maintainer_email='[email protected]',
3332
cmdclass={'test': TestCommand},

0 commit comments

Comments
 (0)