-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (31 loc) · 1.11 KB
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
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
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(self.pytest_args)
sys.exit(errno)
setup(
name='anybase32',
version='1.1.0',
packages=find_packages(exclude=["tests"]),
url='https://github.com/alanblevins/anybase32',
download_url='https://github.com/alanblevins/anybase32/tarball/1.1.0',
license='MIT',
author='Alan Blevins',
author_email='alan.blevins@gmail.com',
description='Encode and decode base32 data using arbitrary alphabets',
keywords=['base32', 'encode', 'decode'],
tests_require=['pytest'],
cmdclass={'test': PyTest},
)