forked from PolyLAN/polybookexchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 958 Bytes
/
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
#!/usr/bin/python
from distutils.core import setup
setup(
name='PolyBookExchange',
version='0.1.13',
description='A small django application for book exchange at AGEPoly.',
long_description='PolyBookExchange is a small django application used for book exchange at AGEPoly, the student association of EPFL.',
author='Maximilien Cuony',
author_email='[email protected]',
url='https://github.com/PolyLAN/polybookexchange',
download_url='https://github.com/PolyLAN/polybookexchange',
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages=[
'polybookexchange',
],
include_package_data=True,
install_requires=[
'south',
'django',
'isbnlib',
'requests',
'pyBarcode',
]
)