-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (32 loc) · 1.07 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
import setuptools
import backupy
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="BackuPy",
version=backupy.version(),
python_requires=">3.7.*",
description="A simple backup program in python with an emphasis on data integrity and transparent behaviour",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/elesiuta/backupy",
license="GPLv3",
packages=["backupy"],
entry_points={
"console_scripts": [
"backupy = backupy:main"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Archiving :: Mirroring",
"Topic :: Utilities",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
],
test_suite="tests.tests",
)