Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
python setup.py test
1 parent b8412e6 commit c070673Copy full SHA for c070673
.gitignore
@@ -1,3 +1,4 @@
1
*.py[co]
2
build
3
dist
4
+*.egg-info
setup.py
@@ -1,6 +1,9 @@
#!/usr/bin/env python
-from distutils.core import setup
+try:
+ from setuptools import setup
5
+except ImportError:
6
+ from distutils.core import setup
7
8
version = __import__('reloader').__version__
9
@@ -18,4 +21,5 @@
18
21
'Operating System :: OS Independent',
19
22
'Programming Language :: Python'],
20
23
py_modules = ['reloader'],
24
+ test_suite = 'tests',
25
)
0 commit comments