-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
63 lines (60 loc) · 2.13 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
62
63
import re
from setuptools import setup, find_packages
VERSION_FILE = "wikirate4py/__init__.py"
with open(VERSION_FILE) as version_file:
match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file.read(), re.MULTILINE)
with open('README.md') as readme_file:
readme = readme_file.read()
if match:
version = match.group(1)
else:
raise RuntimeError(f"Unable to find version string in {VERSION_FILE}.")
tests_require = [
"mock",
"nose",
"vcrpy",
"html2text",
"python-dotenv"
]
setup(name='wikirate4py',
version=version,
description='Wikirate for Python!',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/wikirate/wikirate4py',
author='Vasiliki Gkatziaki',
author_email='[email protected]',
license='GPL-3.0',
download_url='https://github.com/wikirate/wikirate4py/archive/refs/tags/v1.2.8.tar.gz',
packages=find_packages(exclude=["tests", "examples"]),
install_requires=[
"requests",
"html2text",
"pandas"
],
project_urls={
"Documentation": "https://wikirate4py.readthedocs.io",
"Issue Tracker": "https://github.com/wikirate4py/wikirate4py/issues",
"Source Code": "https://github.com/wikirate4py/wikirate4py",
},
extras_require={
"test": tests_require,
},
test_suite="nose.collector",
keywords="wikirate library",
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
zip_safe=True)