-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1014 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
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
import os
version = '0.1.0'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.md')).read()
except IOError:
README = ''
setup(name='tgext.debug',
version=version,
description="Provides debug handlers for TurboGears2",
long_description=README,
classifiers=[
"Environment :: Web Environment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: TurboGears"
],
keywords='turbogears2',
author='Evolux Team',
author_email='[email protected]',
url='https://evolux.net.br',
license='MIT',
packages=find_packages(exclude=['test_project']),
namespace_packages=['tgext'],
include_package_data=True,
package_data={'': []},
zip_safe=False,
install_requires=[
"TurboGears2 >= 2.3.9",
],
entry_points="""
# -*- Entry points: -*-
""",
)