-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 740 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python
from distutils.core import setup
setup(
name='SumuPoly',
version='0.0.1',
description='A small Django app to interact with SumUp for AGEPoly - EPFL',
long_description='SumuPoly is a Django app that can be used to obtain detailed reports about transactions generated using the SumUp payment system and its API. It is so far only useful for AGEPoly, EPFLs general students association',
author='Cedric Cook',
author_email='trash@agepoly.ch',
url='https://github.com/CedricCook/sumupoly',
packages=[
'sumupoly',
],
include_package_data=True,
install_requires=[
'django<1.7',
'requests',
'sumup_oauthsession'
# 'django-bootstrap3',
]
)