aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Smoker <classicsc@users.noreply.github.com>2017-03-04 13:24:40 -0800
committerSamuel Smoker <classicsc@users.noreply.github.com>2017-03-04 13:24:40 -0800
commitba48f49524feae827a82bd458cb0ef29c7457ab1 (patch)
tree9fcc4d2b0d64c26cb2f43c2911eecbf2aa2a11df
parent4578b4be439901888a23b4d6baf2d9589a7f7bb9 (diff)
downloadsyncthingmanager-ba48f49524feae827a82bd458cb0ef29c7457ab1.tar.xz
syncthingmanager-ba48f49524feae827a82bd458cb0ef29c7457ab1.zip
Version 0.1.0 released
-rw-r--r--README.md3
-rw-r--r--setup.py17
2 files changed, 9 insertions, 11 deletions
diff --git a/README.md b/README.md
index 514520b..6299a4f 100644
--- a/README.md
+++ b/README.md
@@ -8,8 +8,7 @@ A command line tool for the Syncthing API. Designed to make setting up remote se
- setuptools and pip
- Syncthing 0.14.19 or later
-Make sure you have setuptools installed, clone the repository, and run
-`python3 setup.py install`
+`pip3 install syncthingmanager`
The configuration must be initialized with the Syncthing API key.
Usually this can be done automatically:
diff --git a/setup.py b/setup.py
index cd216b3..c8cfd5c 100644
--- a/setup.py
+++ b/setup.py
@@ -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']
},