-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (31 loc) · 930 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (31 loc) · 930 Bytes
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
#!/usr/bin/env python3
import os
from setuptools import find_packages, setup
setup(
name="integreat-tunews",
version="1.0.0",
packages=find_packages("src"),
package_dir={'':'src'},
include_package_data=True,
scripts=['src/manage.py'],
install_requires=[
"django",
"django-basicauth",
"lxml",
"mysqlclient",
"requests"
],
author="Tuer an Tuer - Digitalfabrik gGmbH",
author_email="info@integreat-app.de",
description="TuNews International Back End for Integreat",
license="MIT",
keywords="Django TuNews International",
url="http://github.com/Integreat/tunews/",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)