Skip to content
This repository was archived by the owner on Jan 10, 2020. It is now read-only.

Commit 139d181

Browse files
committed
Merge pull request #5 from mrhwick/development
Adjusting project settings.
2 parents 4697251 + 77ea169 commit 139d181

File tree

2 files changed

+8
-18
lines changed

2 files changed

+8
-18
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[![Build Status](https://travis-ci.org/bellhops/pipedrive-python.svg?branch=master)](https://travis-ci.org/bellhops/pipedrive-python)
2+
[![License](http://img.shields.io/:license-mit-blue.svg)](http://badges.mit-license.org)
3+
![](https://reposs.herokuapp.com/?path=Bellhops/pipedrive-python)
24

35
pipedrive-python
46
================

setup.py

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -19,38 +19,27 @@ def read(*filenames, **kwargs):
1919
buf.append(f.read())
2020
return sep.join(buf)
2121

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')
3423

3524
setup(
3625
name='pipedrive-python',
3726
version=pipedrive.__version__,
38-
url='http://github.com/blardo/pipedrive-python/',
27+
url='http://github.com/bellhops/pipedrive-python',
3928
license='MIT License',
4029
author='Anthony Blardo',
41-
tests_require=['pytest'],
30+
tests_require=[],
4231
install_requires=['requests >= 0.8.8'],
43-
cmdclass={'test': PyTest},
32+
cmdclass={},
4433
author_email='anthony@blar.do',
4534
description='Python library for interacting with the Pipedrive API.',
4635
long_description=long_description,
4736
packages=['pipedrive'],
4837
include_package_data=True,
4938
platforms='any',
50-
test_suite='pipedrive.test.test_pipedrive',
39+
test_suite='nose.collector',
5140
classifiers = [
5241
'Programming Language :: Python',
53-
'Development Status :: 4 - Beta',
42+
'Development Status :: 2 - Pre-Alpha',
5443
'Natural Language :: English',
5544
'Environment :: Web Environment',
5645
'Intended Audience :: Developers',
@@ -59,6 +48,5 @@ def run_tests(self):
5948
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
6049
],
6150
extras_require={
62-
'testing': ['pytest'],
6351
}
6452
)

0 commit comments

Comments
 (0)