This repository was archived by the owner on Apr 23, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·48 lines (43 loc) · 1.48 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2011-2013 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 find_packages, setup
# 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="[email protected]",
license="BSD",
platforms="Any",
packages=find_packages(),
scripts=["pystil2.py"],
package_data={
'pystil': ['static/*.js',
'static/*.gif',
'static/*.png',
'static/stylesheets/images/*.png',
'static/stylesheets/*.css',
'static/js/*',
'static/img/*',
'static/font/*',
'templates/site/*',
'templates/*.html']
},
install_requires=['tornado', 'pygal', 'sqlalchemy', 'psycopg2', 'momoko'],
classifiers=[
"Development Status :: WIP",
"Intended Audience :: Public",
"License :: OSI Approved :: BSD License",
"Operating System :: Linux",
"Programming Language :: Python :: 3.3"])
setup(**options)