-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
34 lines (30 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
import os
from setuptools import setup
# pip workaround
os.chdir(os.path.abspath(os.path.dirname(__file__)))
with open('README.rst') as fp:
description = fp.read()
setup(name='usagestats',
version='1.0.1',
py_modules=['usagestats'],
description="Anonymous usage statistics collector",
install_requires=['requests', 'distro'],
author="Remi Rampin",
author_email='[email protected]',
maintainer="Remi Rampin",
maintainer_email='[email protected]',
url='https://github.com/remram44/usagestats',
long_description=description,
license='Apache License 2.0',
keywords=['server', 'log', 'logging', 'usage', 'stats', 'statistics',
'collection', 'report'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Internet :: Log Analysis',
'Topic :: Software Development',
'Topic :: System :: Logging',
'Topic :: Utilities'])