@@ -19,38 +19,27 @@ def read(*filenames, **kwargs):
19
19
buf .append (f .read ())
20
20
return sep .join (buf )
21
21
22
- long_description = read ('README.txt' , 'CHANGES.txt' )
23
-
24
- class PyTest (TestCommand ):
25
- def finalize_options (self ):
26
- TestCommand .finalize_options (self )
27
- self .test_args = []
28
- self .test_suite = True
29
-
30
- def run_tests (self ):
31
- import pytest
32
- errcode = pytest .main (self .test_args )
33
- sys .exit (errcode )
22
+ long_description = read ('README.md' )
34
23
35
24
setup (
36
25
name = 'pipedrive-python' ,
37
26
version = pipedrive .__version__ ,
38
- url = 'http://github.com/blardo /pipedrive-python/ ' ,
27
+ url = 'http://github.com/bellhops /pipedrive-python' ,
39
28
license = 'MIT License' ,
40
29
author = 'Anthony Blardo' ,
41
- tests_require = ['pytest' ],
30
+ tests_require = [],
42
31
install_requires = ['requests >= 0.8.8' ],
43
- cmdclass = {'test' : PyTest },
32
+ cmdclass = {},
44
33
author_email = 'anthony@blar.do' ,
45
34
description = 'Python library for interacting with the Pipedrive API.' ,
46
35
long_description = long_description ,
47
36
packages = ['pipedrive' ],
48
37
include_package_data = True ,
49
38
platforms = 'any' ,
50
- test_suite = 'pipedrive.test.test_pipedrive ' ,
39
+ test_suite = 'nose.collector ' ,
51
40
classifiers = [
52
41
'Programming Language :: Python' ,
53
- 'Development Status :: 4 - Beta ' ,
42
+ 'Development Status :: 2 - Pre-Alpha ' ,
54
43
'Natural Language :: English' ,
55
44
'Environment :: Web Environment' ,
56
45
'Intended Audience :: Developers' ,
@@ -59,6 +48,5 @@ def run_tests(self):
59
48
'Topic :: Internet :: WWW/HTTP :: Dynamic Content' ,
60
49
],
61
50
extras_require = {
62
- 'testing' : ['pytest' ],
63
51
}
64
52
)
0 commit comments