-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
28 lines (24 loc) · 984 Bytes
/
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
#!/usr/bin/env python
from builders import info
import setuptools
setuptools.setup(
name=info.__package_name__,
version=info.__version__,
license='Apache License, Version 2.0',
author="Ivan Kalinin",
author_email="[email protected]",
url="http://github.com/yandex-qatools/builders",
packages=["builders"],
description="Lightweight test data generation framework",
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing'],
)