-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
61 lines (53 loc) · 1.66 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
import setuptools
# Read in the README file, for the long_description.
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("CHANGELOG.rst") as changelog_file:
changelog = changelog_file.read()
requirements = ["requests"]
setup_requirements = ["pytest-runner"]
test_requirements = ["pytest"]
setuptools.setup(
name="letterboxd",
packages=setuptools.find_packages(exclude=["contrib", "docs", "tests*", "sample"]),
version="0.3.0",
python_requires=">=3.6",
install_requires=requirements,
description="Python 3 wrapper for the Letterboxd API",
long_description=readme + "\n\n" + changelog,
long_description_content_type="text/x-rst",
author="Mark Boszko",
author_email="[email protected]",
copyright="Copyright (c) 2018 Mark Boszko",
url="https://github.com/bobtiki/letterboxd/",
download_url="",
keywords=[
"api",
"movie",
"film",
"movie database",
"movie review",
"watchlist",
"letterboxd",
"moviedb",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Utilities",
],
license="MIT",
include_package_data=True,
setup_requires=setup_requirements,
test_suite="tests",
tests_require=test_requirements,
zip_safe=False,
)