forked from omaciel/fauxfactory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (37 loc) · 1.39 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
"""A setuptools-based script for installing FauxFactory."""
# setuptools is preferred over distutils.
import codecs
import os
from setuptools import find_packages, setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
filename = os.path.join(*paths)
with codecs.open(filename, mode='r', encoding='utf-8') as handle:
return handle.read()
LONG_DESCRIPTION = (read('README.rst') + '\n\n' +
read('AUTHORS.rst') + '\n\n' +
read('HISTORY.rst'))
setup(
name='fauxfactory',
description='Generates random data for your tests.',
long_description=LONG_DESCRIPTION,
version='3.0.0',
author='Og Maciel',
author_email='[email protected]',
url='https://github.com/omaciel/fauxfactory',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
keywords='python automation data',
license='Apache 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Testing',
],
test_suite='tests',
)