forked from RedHatQE/widgetastic.patternfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.09 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
# -*- coding: utf-8 -*-
import codecs
from setuptools import find_packages, setup
setup(
name="widgetastic.patternfly",
use_scm_version=True,
author="Milan Falesnik",
author_email="[email protected]",
description='Patternfly widget library for Widgetastic',
long_description=codecs.open('README.rst', mode='r', encoding='utf-8').read(),
license="Apache license",
url="https://github.com/RedHatQE/widgetastic.patternfly",
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'widgetastic.core>=0.10.0',
'aenum==2.1.2'
],
setup_requires=[
'setuptools_scm',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)