File: setup.py

package info (click to toggle)
python-nose-random 1.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 92 kB
  • sloc: python: 93; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 909 bytes parent folder | download | duplicates (3)
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
import os
import re
from setuptools import setup, find_packages

with open(os.path.join(os.path.dirname(__file__), 'nose_random', '__init__.py')) as f:
    version = re.compile(r".*__version__ = '(.*?)'", re.S).match(f.read()).group(1)

setup(
    name='nose-random',
    packages=find_packages(),
    version=version,
    description='Random scenario testing in Nose',
    author='Zoomer Analytics LLC',
    author_email='eric.reynolds@zoomeranalytics.com',
    url='https://github.com/ZoomerAnalytics/nose-random',
    keywords=['nose', 'tests', 'nosetests', 'test', 'unit', 'testing', 'random', 'stochastic',
              'entropy', 'randomized', 'scenario'],
    entry_points={
        'nose.plugins.0.10': [
            'nose_random = nose_random:NoseRandomPlugin'
        ]
    },
    classifiers=[
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
    ],
)