-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 672 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 672 Bytes
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
import os
from setuptools import setup
name = 'parameterizabletests'
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name=name,
version='1.0.0',
description="unittest parameterization for stdlib tests",
long_description=long_description,
url='https://github.com/bitdancer/extras/' + name,
author='R. David Murray',
author_email='rdmurray@bitdance.com',
license='MIT',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
keywords='testing',
py_modules=[name],
)