Preparation for pypi packaging
This commit is contained in:
pare
d6bbd27153
commit
cc1bae06c2
S'han modificat 2 arxius amb 18 adicions i 3 eliminacions
|
@ -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.
|
||||
|
|
17
setup.py
17
setup.py
|
@ -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',
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Referencia en una nova incidència