-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
52 lines (43 loc) · 1.5 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
48
49
50
51
52
#!/usr/bin/env python3
import os
import sys
from setuptools import setup
import dsari
assert sys.version_info > (3, 4)
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name="dsari",
description="Do Something and Record It",
long_description=read("README.md"),
long_description_content_type="text/markdown",
version=dsari.__version__,
license="MPL-2.0",
platforms=["Unix"],
author="Ryan Finnie",
author_email="ryan@finnie.org",
url="https://github.com/rfinnie/dsari",
download_url="https://github.com/rfinnie/dsari/releases",
packages=["dsari"],
package_data={"dsari": ["templates/*.html"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
],
entry_points={
"console_scripts": [
"dsari-daemon = dsari.daemon:main",
"dsari-info = dsari.info:main",
"dsari-prometheus-exporter = dsari.prometheus_exporter:main",
"dsari-render = dsari.render:main",
]
},
)