1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
from setuptools import setup
setup(
name='syncthingmanager',
version='0.2.0dev1',
description='A commandline tool for configuring Syncthing',
url='https://github.com/classicsc/syncthingmanager',
author='Samuel Smoker',
author_email='smoker@usc.edu',
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'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>=2.0.2'],
extras_require={
'test': ['pytest']
},
entry_points={
'console_scripts': [
'stman=syncthingmanager:main',
],
},
)
|