-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.07 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.07 KB
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 os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "collectd_graphs",
version = "0.1",
author = "Adam Strauch",
author_email = "cx@initd.cz",
description = ("Collectd frontend"),
license = "GPLv2",
keywords = "collectd,graphs,statistics",
url = "https://github.com/creckx/CollectdGraphs",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
long_description="Make iptables rules more easier to maintain.",#read('README'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
data_files=[
("collectd_graphs/views", ("collectd_graphs/views/home.tpl", "collectd_graphs/views/plugin.tpl"), ),
("collectd_graphs/static", ("collectd_graphs/static/keyvalue.js", ), ),
],
install_requires=[
#"termcolor",
],
entry_points="""
[console_scripts]
collectd_graphs = collectd_graphs.web:main
"""
)