forked from Kozea/pystil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·45 lines (39 loc) · 1.27 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2011 by Florian Mounier, Kozea
# This file is part of pystil, licensed under a 3-clause BSD license.
"""
pystil - An elegant site web traffic analyzer
"""
from setuptools import setup, find_packages
# Use a time-based version number with ridiculous precision as pip in tox
# does not reinstall the same version.
import datetime
VERSION = "git-" + datetime.datetime.now().isoformat()
options = dict(
name="pystil",
version=VERSION,
description="An elegant site web traffic analyzer",
long_description=__doc__,
author="Florian Mounier - Kozea",
author_email="florian.mounier@kozea.fr",
license="BSD",
platforms="Any",
packages=find_packages(),
install_requires=['pygeoip', "flask>=0.8", 'flask-sqlalchemy', "CSStyle",
'pika', 'gevent'],
package_data={'pystil': [
'templates/*.jinja2',
'templates/css/*',
'templates/js/*',
'static/*.gif',
'static/js/*',
'static/css/*',
]},
classifiers=[
"Development Status :: WIP",
"Intended Audience :: Public",
"License :: OSI Approved :: BSD License",
"Operating System :: Linux",
"Programming Language :: Python :: 2.7"])
setup(**options)