-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 925 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
from setuptools import setup
long_description = open('README.rst').read()
setup(
name="django-flashbriefing",
version='1.0.1',
packages=["flashbriefing", "flashbriefing.migrations"],
include_package_data=True,
description="Amazon Alexa Flash Briefings for Django",
url="https://github.com/istrategylabs/django-flashbriefing",
author="ISL",
author_email="dev@isl.co",
license='BSD',
long_description=long_description,
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)