This repository was archived by the owner on Nov 15, 2021. It is now read-only.
forked from joshua-stone/DerPyBooru
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.41 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.41 KB
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
#!/usr/bin/env python
from os import path
from setuptools import setup
from setuptools import find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = "DerPyBooru_Nullforce",
# Versions should comply with PEP 440:
# https://www.python.org/dev/peps/pep-0440/
version = "0.9.1",
description = "Python bindings for Derpibooru's API",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/nullforce-forks/NF-DerPyBooru",
author = "Nullforce",
author_email = "glenngit@nullforce.com",
license = "Simplified BSD License",
platforms = ["any"],
packages = find_packages(exclude=["tests"]),
install_requires = ["requests", "deprecation"],
include_package_data = True,
#download_url = "https://github.com/joshua-stone/DerPyBooru/tarball/0.7.2",
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3"
],
keywords = "derpibooru ponies pony mlp"
)