forked from baobabsoluciones/hackathonbaobab2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (34 loc) · 1.25 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
#!/usr/bin/env python3
from setuptools import setup
packages = ['hackathonbaobab2020',
'hackathonbaobab2020.core',
'hackathonbaobab2020.solver',
'hackathonbaobab2020.execution',
'hackathonbaobab2020.solver.milp_LP_HL']
with open("README.md", "r") as fh:
long_description = fh.read()
required = []
with open("requirements.txt", "r") as fh:
required.append(fh.read().splitlines())
kwargs = {
"name": "hackathonbaobab2020",
"version": 0.94,
"packages": packages,
"description": "Hackathon 2020 at baobab soluciones",
"long_description": long_description,
'long_description_content_type': "text/markdown",
"author": "Franco Peschiera",
"maintainer": "Franco Peschiera",
"author_email": "pchtsp@gmail.com",
"maintainer_email": "pchtsp@gmail.com",
"install_requires": required,
"url": "https://github.com/baobabsoluciones/hackathonbaobab2020",
"download_url": "https://github.com/baobabsoluciones/hackathonbaobab2020/archive/main.zip",
"keywords": "math hackathon pulp ortools pyomo",
"classifiers": [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
}
setup(**kwargs)