-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 962 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 962 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
27
28
29
"""Setup script for packaging and distributing the team_former module."""
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup( # pylint: disable=too-many-arguments
name="team_former",
version="1.0.1",
author="Michael Burke",
author_email="michael.g.burke@monash.edu",
description="A team allocation tool using OR-Tools.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mgb45/teamformer", # Replace with your repo URL
packages=find_packages(),
install_requires=["pandas", "ortools", "fire", "openpyxl", "xlrd"],
entry_points={
"console_scripts": [
"team_former=team_former.make_teams:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)