-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (37 loc) · 1.28 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
from setuptools import setup, find_packages
import os
version = '0.3'
here = os.path.dirname(__file__)
with open(os.path.join(here, 'README.rst')) as fp:
longdesc = [fp.read()]
with open(os.path.join(here, 'CHANGELOG.rst')) as fp:
longdesc.append(fp.read())
longdesc = "\n\n".join(longdesc)
setup(
name='nicelog',
version=version,
packages=find_packages(),
url='http://github.com/rshk/nicelog',
license='BSD',
author='Samuele Santi',
author_email='[email protected]',
description='Nice colorful formatters for Python logging.',
long_description=longdesc,
install_requires=['pygments', 'six'],
# tests_require=tests_require,
test_suite='tests',
classifiers=[
"License :: OSI Approved :: BSD License",
# "Development Status :: 1 - Planning",
# "Development Status :: 2 - Pre-Alpha",
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
# "Development Status :: 7 - Inactive",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
package_data={'': ['README.rst']},
include_package_data=True,
zip_safe=False)