forked from abalakh/airgun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.02 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
#!/usr/bin/env python
from setuptools import find_packages, setup
with open('README.rst', 'r') as f:
README = f.read()
setup(
name='airgun',
version='0.0.1',
description='TBD',
long_description=README,
author=u'RedHat QE Team',
url='https://github.com/abalakh/airgun',
install_requires=[
'fauxfactory',
'navmazing==1.1.4',
'pytest==3.3.2',
'six==1.11.0',
'widgetastic.core==0.20.3',
],
packages=find_packages(exclude=['tests*']),
package_data={'': ['LICENSE']},
include_package_data=True,
license='GNU GPL v3.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=(
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux'
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
),
)