forked from omaciel/fauxfactory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (38 loc) · 1.42 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·42 lines (38 loc) · 1.42 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
38
39
40
41
42
"""A setuptools-based script for installing FauxFactory."""
# setuptools is preferred over distutils.
from setuptools import find_packages, setup
import codecs
import os
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='2.0.7',
author='Og Maciel',
author_email='omaciel@ogmaciel.com',
url='https://github.com/omaciel/fauxfactory',
packages=find_packages(),
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 :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Testing',
]
)