-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (45 loc) · 1.38 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
from setuptools.command.install import install
import pathlib
here = pathlib.Path(__file__).parent.resolve()
VERSION = '0.0.1'
DESCRIPTION = 'EA FC 24 SBC solver'
LONG_DESCRIPTION = (here / "README.md").read_text(encoding="utf-8")
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="eafc24-ut-players",
version=VERSION,
author="Bartlomiej Niemiec",
author_email="<bniemiec11@gmail.com>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url="https://github.com/bartlomiej-niemiec/fc24-sbc-solver",
packages=find_packages(where="src"),
install_requires=[
"ortools",
"pandas",
"sqlite3",
"sqlalchemy",
"prettytable"
], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=[
'google or-tools',
'mixed-integer-programming',
'cp-sat',
'python',
'eafc24',
'ultimate team',
'sbc'
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
package_dir={"": "src"},
)