-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
63 lines (56 loc) · 1.98 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Imports from standard libraries. # NOQA
import os
from setuptools import find_packages, setup
REPO_URL = 'https://github.com/DallasMorningNews/django-chartwerk/'
PYPI_VERSION = '0.5.20'
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-chartwerk',
version=PYPI_VERSION,
packages=find_packages(exclude=('example',)),
include_package_data=True,
license='AGPLv3',
description=(
'A Django application to manage, create and share Chartwerk charts.'
),
long_description=README,
url=REPO_URL,
download_url='{repo_url}archive/{version}.tar.gz'.format(**{
'repo_url': REPO_URL,
'version': PYPI_VERSION,
}),
author='Jon McClure / The Dallas Morning News',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'boto3>=1.4',
'celery>=4.0',
'django-uuslug>=1.1.8',
'djangorestframework>=2.4',
'Pillow',
'PyGithub>=1.29',
'slacker>=0.9',
],
)