-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
35 lines (30 loc) · 1021 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
33
34
35
#!/usr/bin/python
import polybookexchange
from distutils.core import setup
setup(
name="PolyBookExchange",
version=polybookexchange.__version__,
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=[
"django (>=4, <5)",
"isbnlib",
"requests",
"viivakoodi", # Fork of pyBarcode
],
)