|
1 | 1 | #!/usr/bin/env python |
2 | 2 |
|
| 3 | +from os import path |
3 | 4 | from setuptools import setup |
4 | 5 | from setuptools import find_packages |
5 | 6 |
|
| 7 | +here = path.abspath(path.dirname(__file__)) |
| 8 | + |
| 9 | +# Get the long description from the README file |
| 10 | +with open(path.join(here, 'README.md'), encoding='utf-8') as f: |
| 11 | + long_description = f.read() |
| 12 | + |
6 | 13 | setup( |
7 | | - name = "DerPyBooru", |
| 14 | + name = "DerPyBooru_Nullforce", |
| 15 | + # Versions should comply with PEP 440: |
| 16 | + # https://www.python.org/dev/peps/pep-0440/ |
| 17 | + version = "0.8.0", |
8 | 18 | description = "Python bindings for Derpibooru's API", |
9 | | - url = "https://github.com/joshua-stone/DerPyBooru", |
10 | | - version = "0.7.2", |
11 | | - author = "Joshua Stone", |
12 | | - author_email = "joshua.gage.stone@gmail.com", |
| 19 | + long_description = long_description, |
| 20 | + long_description_content_type = "text/markdown", |
| 21 | + url = "https://github.com/nullforce-forks/NF-DerPyBooru", |
| 22 | + author = "Nullforce", |
| 23 | + author_email = "glenngit@nullforce.com", |
13 | 24 | license = "Simplified BSD License", |
14 | 25 | platforms = ["any"], |
15 | | - packages = find_packages(), |
| 26 | + packages = find_packages(exclude=["tests"]), |
16 | 27 | install_requires = ["requests"], |
17 | 28 | include_package_data = True, |
18 | | - download_url = "https://github.com/joshua-stone/DerPyBooru/tarball/0.7.2", |
| 29 | + #download_url = "https://github.com/joshua-stone/DerPyBooru/tarball/0.7.2", |
| 30 | + # For a list of valid classifiers, see https://pypi.org/classifiers/ |
19 | 31 | classifiers = [ |
20 | 32 | "Development Status :: 4 - Beta", |
21 | 33 | "Intended Audience :: Developers", |
|
24 | 36 | "Topic :: Software Development :: Libraries :: Python Modules", |
25 | 37 | "Programming Language :: Python :: 2.7", |
26 | 38 | "Programming Language :: Python :: 3" |
27 | | - ] |
| 39 | + ], |
| 40 | + keywords = "derpibooru ponies pony mlp" |
28 | 41 | ) |
0 commit comments