forked from burke-software/schooldriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 809 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, find_packages
setup(
name = "django-sis",
version = "1.0",
author = "David Burke",
author_email = "[email protected]",
description = ("Django School Information System"),
license = "GPLv3",
keywords = "django school",
url = "https://github.com/burke-software/django-sis",
packages=find_packages(),
include_package_data=True,
test_suite='setuptest.setuptest.SetupTestSuite',
tests_require=(
'django-setuptest',
),
install_requires = [
'django',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
"License :: OSI Approved :: GPLv3 License",
],
)