-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 833 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 833 Bytes
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
from setuptools import setup, find_packages
setup(
name='parasol',
version='0.1',
description='Backup data from various on-line services',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
'requests',
'paramiko',
'python-slugify'
],
entry_points='''
[console_scripts]
parasol=parasol.cli:run
''',
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: System :: Archiving :: Backup",
],
)