forked from e000/py-4chan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (26 loc) · 1008 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
27
28
29
30
31
32
33
#!/usr/bin/env python
"""
py-4chan-setup
~~~~~~~~~~~~~~
Python Wrappers to access 4chan's API.
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
http://sam.zoy.org/wtfpl/COPYING for more details.
"""
from setuptools import setup
from py4chan import _VERSION
with open('README.rst') as file:
long_description = file.read()
setup(name='py-4chan',
version=_VERSION,
description='Python 4chan API Wrapper. Modded by the Bibliotheca Anonoma to support the BA 4chan-thread-archiver',
long_description = long_description,
license=open('LICENSE').read(),
author='Edgeworth Euler',
author_email='[email protected]',
url='http://github.com/bibanon/py-4chan',
packages=['py4chan'],
install_requires = ['requests >= 1.0.0']
)