-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (29 loc) · 987 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
#!/usr/bin/env python3
# pylint: disable=missing-docstring
import codecs
from setuptools import setup
try:
codecs.lookup('mbcs')
except LookupError:
def func(name, enc=codecs.lookup('ascii')):
return {True: enc}.get(name == 'mbcs')
codecs.register(func)
setup(name='gnusocial',
version='3.0.3',
description='GNU Social API for Python 3',
long_description=open('README.rst').read(),
author='dtluna',
author_email='[email protected]',
maintainer='dtluna',
maintainer_email='[email protected]',
license='GPLv3',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
url='https://gitgud.io/dtluna/pygnusocial',
platforms=['any'],
packages=['gnusocial'],
python_requires='>=3.3',
install_requires=['requests', 'requests-oauthlib'])