-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·40 lines (36 loc) · 1.31 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""8chan/vichan Python Library.
pyvichan is a Python library that gives access to the 8chan/vichan 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='pyvichan',
version='0.4.3',
description=("Python vichan API Wrapper. Based on BASC-py4chan by the Bibliotheca Anonoma"),
long_description=open('README.rst').read(),
license=open('LICENSE').read(),
author='Antonizoon Overtwater',
author_email='antonizoon@bibanon.org',
url='http://github.com/bibanon/py8chan',
packages=['pyvichan'],
package_dir={
'pyvichan': 'pyvichan',
},
package_data={'': ['README.rst', 'LICENSE']},
install_requires=['requests >= 1.0.0'],
keywords='8chan api vichan',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
)