diff options
author | Lorenz Diener <[email protected]> | 2016-11-24 20:40:23 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2016-11-24 20:40:23 +0100 |
commit | cc1bae06c2354b2155a4bb7f2971e40f8b783dc8 (patch) | |
tree | 84485022ff187d5feb9a28d608da444fec72dfac | |
parent | d6bbd27153241b74d2f08be48b3efaccd6c0b7dd (diff) | |
download | mastodon.py-cc1bae06c2354b2155a4bb7f2971e40f8b783dc8.tar.gz |
Preparation for pypi packaging
-rw-r--r-- | docs/conf.py | 4 | ||||
-rw-r--r-- | setup.py | 17 |
2 files changed, 18 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py index 5fc673b..2914f78 100644 --- a/docs/conf.py +++ b/docs/conf.py | |||
@@ -66,9 +66,9 @@ author = u'Lorenz Diener' | |||
66 | # built documents. | 66 | # built documents. |
67 | # | 67 | # |
68 | # The short X.Y version. | 68 | # The short X.Y version. |
69 | version = u'0.9' | 69 | version = u'1.0' |
70 | # The full version, including alpha/beta/rc tags. | 70 | # The full version, including alpha/beta/rc tags. |
71 | release = u'0.9' | 71 | release = u'1.0.0' |
72 | 72 | ||
73 | # The language for content autogenerated by Sphinx. Refer to documentation | 73 | # The language for content autogenerated by Sphinx. Refer to documentation |
74 | # for a list of supported languages. | 74 | # for a list of supported languages. |
@@ -1,6 +1,21 @@ | |||
1 | from setuptools import setup, find_packages | 1 | from setuptools import setup, find_packages |
2 | 2 | ||
3 | setup(name='Mastodon.py', | 3 | setup(name='Mastodon.py', |
4 | version='1.0.0', | ||
4 | description='Python wrapper for the Mastodon API', | 5 | description='Python wrapper for the Mastodon API', |
5 | packages=['mastodon'], | 6 | packages=['mastodon'], |
6 | install_requires=['requests']) | 7 | install_requires=['requests'], |
8 | url='https://github.com/halcy/Mastodon.py', | ||
9 | author='Lorenz Diener', | ||
10 | author_email='[email protected]', | ||
11 | license='MIT', | ||
12 | keywords='mastodon api microblogging', | ||
13 | classifiers=[ | ||
14 | 'Development Status :: 4 - Beta', | ||
15 | 'Intended Audience :: Developers', | ||
16 | 'Topic :: Communications', | ||
17 | 'License :: OSI Approved :: MIT License', | ||
18 | 'Programming Language :: Python :: 2', | ||
19 | 'Programming Language :: Python :: 3', | ||
20 | ] | ||
21 | ) | ||