-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
69 lines (59 loc) · 1.8 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
readme = open('README.md').read()
history = open('HISTORY.md').read()
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['tests']
self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
if sys.argv[-1] == 'publish':
print("Use `make release` instead.")
sys.exit()
setup(
name='python-scrapyd-api',
version='2.1.2',
description='A Python wrapper for working with the Scrapyd API',
keywords='python-scrapyd-api scrapyd scrapy api wrapper',
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
author='Darian Moody',
author_email='[email protected]',
url='https://github.com/djm/python-scrapyd-api',
packages=[
'scrapyd_api',
],
package_dir={
'scrapyd_api': 'scrapyd_api'
},
include_package_data=True,
setup_requires=['setuptools>=38.6.0'],
install_requires=[
'requests'
],
license="BSD",
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
],
cmdclass={
'test': PyTest
}
)