-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (48 loc) · 1.58 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
50
51
52
""" Installation """
from setuptools import setup
import qaekwy
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
setup(
name="qaekwy",
version=qaekwy.__version__,
license=qaekwy.__license__,
author=qaekwy.__author__,
author_email=qaekwy.__author_email__,
keywords=[
"operational research",
"optimization",
"CSP",
"solver",
"constraint",
"constraint programming",
],
description="Python Client library for Qaekwy Operational Research Solver",
long_description_content_type = "text/markdown",
long_description=long_description,
url="https://qaekwy.io",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
],
packages=[
"qaekwy",
"qaekwy.model",
"qaekwy.model.variable",
"qaekwy.model.constraint",
"qaekwy.exception",
],
project_urls={
'Homepage': 'https://qaekwy.io',
'Documentation': 'https://docs.qaekwy.io',
'Issues tracker': 'https://github.com/alex-87/qaekwy-python/issues',
'Github': 'https://github.com/alex-87/qaekwy-python',
},
)