forked from mozilla-services/tecken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 852 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
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/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,
)