-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 838 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
26
#from distutils.core import setup
from setuptools import setup
setup(
name='moesearch',
version='0.3.0',
author='alfateam123',
author_email='[email protected]',
packages=['moesearch'],
scripts=['bin/index', 'bin/post_details', 'bin/thread_details', 'bin/search'],
url='http://github.com/alfateam123/moesearch',
#license='LICENSE.txt',
description='archive.moe Search REST API Library',
long_description=open('README.md').read(),
install_requires=[
"requests >= 2.5.0"
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards",
"Topic :: Software Development :: Libraries :: Python Modules"
],
test_suite="tests"
)