-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·41 lines (37 loc) · 1.34 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""4chan Python Library.
BASC-py4chan is a Python library that gives access to the 4chan API
and an object-oriented way to browse and get board and thread
information quickly and easily.
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
the LICENSE file for more details.
"""
from setuptools import setup
setup(
name='BASC-py4chan',
version='0.6.5',
description=("Python 4chan API Wrapper. Improved version of Edgeworth's "
"original py-4chan wrapper."),
long_description=open('README.rst').read(),
license=open('LICENSE').read(),
author='Antonizoon Overtwater',
author_email='[email protected]',
url='http://github.com/bibanon/BASC-py4chan',
packages=['basc_py4chan'],
package_dir={
'basc_py4chan': 'basc_py4chan',
},
package_data={'': ['README.rst', 'LICENSE']},
install_requires=['requests >= 1.0.0'],
keywords='4chan api',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
)