-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (52 loc) · 1.83 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
import sys
import re
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
module_file = open('nfsn/__init__.py').read()
metadata = dict(re.findall("__([a-z]+)__\s*=\s*'([^']+)'", module_file))
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ''
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
#import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main('nfsn/tests ' + self.pytest_args)
sys.exit(errno)
setup(name='python-nfsn',
version=metadata['version'],
description=("Interact with NearlyFreeSpeech's API"),
classifiers=['Development Status :: 4 - Beta',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='nearlyfreespeech.net',
author='ken dreyer',
author_email='[email protected]',
url='https://github.com/ktdreyer/python-nfsn',
license='License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
packages=find_packages(),
install_requires=[
'beanbag',
'requests',
],
entry_points={
'console_scripts': [
'pynfsn = nfsn.cli:main',
],
},
tests_require=[
'beanbag',
'httpretty',
'pytest',
'requests',
],
cmdclass = {'test': PyTest},
)