-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (50 loc) · 1.33 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
# -*- coding: utf-8 -*-
# vim: set sw=4 ts=4 et wrap tw=76 :
from codecs import open as codecs_open
from setuptools import setup, find_packages
# Get the long description from the relevant file
with codecs_open('README.rst', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='stickerview',
version='0.1',
description='Stickerview Website',
long_description=LONG_DESCRIPTION,
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='stickerview django REST',
author='Tobias Rueetschi',
author_email='[email protected]',
url='https://github.com/chaostreff-bern/stickerview',
license='AGPLv3',
packages=find_packages(),
install_requires=[
'django',
'djangorestframework',
'djangorestframework-jsonapi',
'django-filter',
'Pillow',
'pytz',
],
extras_require={
'mysql': [
'mysqlclient',
],
'pgsql': [
'psycopg2',
],
'test': [
'pytest',
'pytest-django',
],
},
entry_points="""
[console_scripts]
stickerview=manage:main
"""
)