-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
50 lines (44 loc) · 1.56 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
# -*- coding utf-8 -*-
# !/usr/bin/env python
# setuptools imports
from setuptools import setup
from setuptools import find_packages
# pybooru imports
import pybooru
# Read description file
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name="Pybooru",
version=pybooru.__version__,
author=pybooru.__author__,
description="Pybooru is a Python package to access to the API of Danbooru/Moebooru based sites.",
long_description=long_description,
long_description_content_type="text/markdown",
author_email="[email protected]",
url="https://github.com/LuqueDaniel/pybooru",
license="MIT License",
keywords="Pybooru moebooru danbooru API client",
packages=find_packages(),
platforms=['any'],
install_requires=['requests'],
include_package_data=True,
data_file=[
('', ['LICENSE', 'README.md', 'changelog.md', 'requirements.txt'])
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet"
],
)