-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (54 loc) · 1.57 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
53
54
55
56
57
58
59
60
61
"""
Run setup
"""
from setuptools import setup, find_packages
def parse_description(description):
"""
Strip figures and alt text from description
"""
return "\n".join(
[
a
for a in description.split("\n")
if ("figure::" not in a) and (":alt:" not in a)
]
)
DISTNAME = "poster_recsys"
VERSION = "0.0.1"
DESCRIPTION = "My master thesis that tries to incorporate poster information into traditional CF"
with open("README.md") as f:
LONG_DESCRIPTION = parse_description(f.read())
CLASSIFIERS = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
AUTHOR = "Miguel Otero Pedrido"
AUTHOR_EMAIL = "[email protected]"
LICENSE = "Apache 2.0"
PROJECT_URLS = {"Source Code": "https://github.com/MichaelisTrofficus/recommender_system_with_image_information"}
MIN_PYTHON_VERSION = "3.8"
tests_require = [
"pytest",
"coverage",
"nox",
]
setup(
name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
project_urls=PROJECT_URLS,
packages=find_packages(),
python_requires=">={0}".format(MIN_PYTHON_VERSION),
extras_require=dict(tests=tests_require),
)