-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
54 lines (48 loc) · 1.36 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
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
version = '0.3.2.dev0'
install_requires = [
'PyPOM[splinter]>=1.1.1',
'colander',
]
tests_require = [
'tox',
'pytest-cov',
'mock',
]
docs_require = [
'Sphinx',
'sphinx_rtd_theme',
]
setup(name='pypom_form',
version=version,
description="pypom_form",
long_description=open("README.rst").read() + "\n" +
open("CHANGES.txt").read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Framework :: Pytest",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: Apache Software License",
],
keywords='',
author='Davide Moro',
author_email='[email protected]',
url='http://pypom-form.readthedocs.io/en/latest/',
license='Apache License, Version 2.0',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points="""
# -*- Entry points: -*-
[console_scripts]
""",
extras_require={
'docs': docs_require,
'tests': tests_require,
},
)