forked from atomicptr/BooruPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 893 Bytes
/
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
from distutils.core import setup
setup(
name='BooruPy',
version='0.1.6',
keywords = ['pictures', 'anime', 'booru', 'gelbooru', 'danbooru', 'image',
'board', 'imageboard'],
author='Christopher Kaster',
author_email='[email protected]',
maintainer='Giuliano Di Pasquale',
maintainer_email='[email protected]',
packages=['BooruPy'],
url='http://github.com/Kasoki/BooruPy',
license='GNU GENERAL PUBLIC LICENSE',
description='BooruPy is a simple library for interacting with various image board "Booru" systems.',
long_description=open('README.rst').read(),
platforms='OS Independent',
classifiers= [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries'
]
)