-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
29 lines (27 loc) · 1.04 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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
from setuptools import find_packages, setup
setup(
name='tecken',
use_scm_version=True,
setup_requires=['setuptools_scm'],
packages=find_packages(exclude=['tests', 'tests/*']),
description='The Mozilla Symbol Server',
author='Mozilla',
author_email='[email protected]',
url='https://github.com/mozilla-services/tecken',
license='MPL 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment :: Mozilla',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
)