-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (34 loc) · 1.19 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
import sys
try:
from setuptools import setup
except ImportError:
print("This project needs setuptools.", file=sys.stderr)
print("Please install it using your package-manager or pip.", file=sys.stderr)
sys.exit(1)
from uberspace_takeout import __version__ as version
setup(
name="uberspace_takeout",
version=version,
description="",
author="uberspace.de",
author_email="[email protected]",
url="https://github.com/uberspace/takeout",
packages=["uberspace_takeout", "uberspace_takeout.items",],
extras_require={"test": ["pyfakefs>=3.6", "pytest-mock",],},
entry_points={
"console_scripts": ["uberspace-takeout=uberspace_takeout.__main__:main"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: System :: Systems Administration",
"Topic :: Security",
"Topic :: Utilities",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
],
zip_safe=True,
)