-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·40 lines (35 loc) · 969 Bytes
/
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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="surl",
version="1.0.4",
author="Snap Store Team",
author_email="daniel.manrique@canonical.com",
url="https://github.com/canonical/surl",
license="GPL-3.0",
description="Ubuntu Store API thin wrapper.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
install_requires=[
"requests",
"pymacaroons",
"tabulate",
"iso8601",
],
test_suite="tests",
setup_requires=["flake8"],
scripts=[
"surl_cli.py",
"surl_metrics.py",
"surl_storeops.py",
"surl_month_in_snaps.py",
],
packages=setuptools.find_packages(),
)