-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
49 lines (46 loc) · 1.55 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
import setuptools
from pathlib import Path
VERSION = '1.6.7'
INSTALL_REQUIRES = [
'pymongo >= 3',
'blinker >= 1.2',
'WebOb >= 0.9',
'Mako >= 0.9',
'bottle >= 0.12.8',
]
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name='switchboard',
version=VERSION,
description="Feature flipper for Pyramid, Pylons, or TurboGears apps.",
long_description=long_description,
long_description_content_type='text/markdown',
# http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires='>=3.9',
keywords='switches feature flipper pyramid pylons turbogears',
author='Kyle Adams',
author_email='[email protected]',
url='https://github.com/switchboardpy/switchboard/',
download_url='https://github.com/switchboardpy/switchboard/releases',
license='Apache License',
packages=setuptools.find_packages(exclude=['ez_setup']),
include_package_data=True,
install_requires=INSTALL_REQUIRES,
zip_safe=False,
tests_require=[
'pytest',
'selenium',
'splinter',
],
)