forked from jessykate/django-survey
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 660 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="survey",
version="0.1.1",
author="Jessy Kate Schingler",
author_email="jessy@jessykate.com",
license="AGPL",
url="https://github.com/jessykate/django-survey",
packages=find_packages(exclude=[]),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)