forked from fgoudreault/auxiclean
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (20 loc) · 777 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (20 loc) · 777 Bytes
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
from setuptools import setup
import sys
import versioneer
# package required
install_packages = ["openpyxl", # to manage excel spreadsheets
]
develop_packages = ["nose", "pep8", "coverage"]
print("Installing auxiclean, the following packages are required:",
install_packages)
if "develop" in sys.argv:
print(("Development installation: installing more packages for testing"
" purposes:"), develop_packages)
install_packages += develop_packages
setup(name="auxiclean",
version=versioneer.get_version(),
description="Distributeur de taches d'auxiliariat d'enseignement",
url="https://github.com/physumasso/auxiclean",
install_requires=install_packages,
cmdclass=versioneer.get_cmdclass()
)