diff options
author | Samuel Smoker <classicsc@users.noreply.github.com> | 2017-03-04 13:24:40 -0800 |
---|---|---|
committer | Samuel Smoker <classicsc@users.noreply.github.com> | 2017-03-04 13:24:40 -0800 |
commit | ba48f49524feae827a82bd458cb0ef29c7457ab1 (patch) | |
tree | 9fcc4d2b0d64c26cb2f43c2911eecbf2aa2a11df /setup.py | |
parent | 4578b4be439901888a23b4d6baf2d9589a7f7bb9 (diff) | |
download | syncthingmanager-ba48f49524feae827a82bd458cb0ef29c7457ab1.tar.xz syncthingmanager-ba48f49524feae827a82bd458cb0ef29c7457ab1.zip |
Version 0.1.0 released
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -1,27 +1,26 @@ -from setuptools import setup, find_packages +from setuptools import setup setup( name='syncthingmanager', - version='0.1.0-dev1', - description='A commandline tool for controlling the Syncthing API', - url ='https://github.com/classicsc/syncthingmanager', + version='0.1.0', + description='A commandline tool for configuring Syncthing', + url='https://github.com/classicsc/syncthingmanager', author='Samuel Smoker', author_email='smoker@usc.edu', license='GPLv3', - classifiers = [ + classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: System Administrators', - 'Intended Audience :: Developers', 'Topic :: System :: Archiving :: Mirroring', 'Topic :: Utilities', 'Natural Language :: English', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python :: 3.4', ], - keywords = 'syncthing', - packages = ['syncthingmanager'], - install_requires = ['syncthing'], + keywords='syncthing', + packages=['syncthingmanager'], + install_requires=['syncthing'], extras_require={ 'test': ['pytest'] }, |