Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 51d68dcd6c603c244b9b141ca068db7bef295303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup

setup(
    name = "stats_consolidation",
    version = "1.0.0",
    description = "Statistics translator from rrd to relational db",
    author = "Gustavo Duarte",
    author_email = "gduarte@activitycentral.com",
    url = "http://www.acrtivitycentral.com/",
    data_files=[('/usr/local/bin', ['stats_consolidation/stats_consolidation_run']),
		('/etc/cron.d', ['stats-consolidation.cron']),
		('/etc',['stats-consolidation.conf'])
    ],
    packages=[
        'stats_consolidation',
    ],
    package_dir={'': ''}
)