-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·35 lines (31 loc) · 1.01 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
#!/usr/bin/env python
import os
import setuptools
VERSION = '0.3.1'
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setuptools.setup(
name='glog',
author='Benjamin Staffin',
author_email='benley@gmail.com',
url='https://github.com/benley/python-glog',
install_requires=[
'python-gflags>=3.1',
'six', # glog doesn't need six, but gflags 3.1 does and its distutils
# "requires" line apparently accomplishes nothing, so ...
],
description='Simple Google-style logging wrapper for Python.',
long_description=README,
py_modules=['glog'],
license='BSD',
test_suite='tests',
version=VERSION,
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: System :: Logging',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms='any',
)