-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (33 loc) · 1.15 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
import os
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
DESCRIPTION = 'AWStatic is a front-end for AWStats.'
REQUIRES = ()
setup(name='AWStatic',
version='0.1.0',
description=DESCRIPTION,
long_description='\n\n'.join((README, CHANGES)),
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Internet :: Log Analysis'),
author='Damien Baty',
author_email='[email protected]',
url='https://github.com/dbaty/AWStatic',
keywords='web statistics awstats',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIRES,
test_suite='awstatic.tests',
entry_points='''
[console_scripts]
awstatic = awstatic.cli:main
''')