-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
47 lines (45 loc) · 1.36 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name = 'syncthing',
version = '2.4.3',
author = 'Blake VandeMerwe',
author_email = '[email protected]',
description = 'Python bindings to the Syncthing REST interface, targeting v0.14.44',
url = 'https://github.com/blakev/python-syncthing',
license = 'The MIT License',
install_requires = [
'python-dateutil>=2.8.1,<=2.8.2',
'requests>=2.24.0,<=2.28.0'
],
extras_require = {
'dev': [
'sphinx',
'sphinxcontrib-napoleon',
'sphinx_rtd_theme'
]
},
packages = [
'syncthing'
],
package_dir = {
'syncthing': 'syncthing'
},
include_package_data = True,
zip_safe = True,
keywords = 'syncthing,sync,rest,backup,api',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: System :: Archiving :: Mirroring'
],
)