Preparation for pypi packaging

This commit is contained in:
Lorenz Diener 2016-11-24 20:40:23 +01:00
pare d6bbd27153
commit cc1bae06c2
S'han modificat 2 arxius amb 18 adicions i 3 eliminacions

Veure arxiu

@ -66,9 +66,9 @@ author = u'Lorenz Diener'
# built documents.
#
# The short X.Y version.
version = u'0.9'
version = u'1.0'
# The full version, including alpha/beta/rc tags.
release = u'0.9'
release = u'1.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

Veure arxiu

@ -1,6 +1,21 @@
from setuptools import setup, find_packages
setup(name='Mastodon.py',
version='1.0.0',
description='Python wrapper for the Mastodon API',
packages=['mastodon'],
install_requires=['requests'])
install_requires=['requests'],
url='https://github.com/halcy/Mastodon.py',
author='Lorenz Diener',
author_email='lorenzd+mastodonpypypi@gmail.com',
license='MIT',
keywords='mastodon api microblogging',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Communications',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
)