-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (37 loc) · 1.01 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
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python3
"""
Install with dependencies
"""
import os
from setuptools import find_packages, setup
setup(
name="ish-goalkeeper",
version="0.0.1",
packages=find_packages("src"),
package_dir={'':'src'},
include_package_data=True,
scripts=['src/manage.py'],
install_requires=[
"django-mptt",
"django-filer",
"django-summernote",
"matplotlib",
"django-admin-rangefilter"
],
tests_require=[
"django-pylint"
],
author="Tuer an Tuer - Digitalfabrik gGmbH",
author_email="[email protected]",
description="Managing ISH courses",
license="GPL-2.0-or-later",
keywords="Django In Safe Hands",
url="http://github.com/Digitalfabrik/ish-goalkeeper/",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)