-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 713 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (19 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from os.path import abspath, dirname, join
from setuptools import setup
readme_path = join(abspath(dirname(__file__)), 'README.rst')
setup(name='LogPy',
version = '1.0.1',
description = 'Unorthodox logging for python',
long_description = open(readme_path).read(),
author = 'Michal Hordecki',
author_email = 'mhordecki@gmail.com',
url = 'http://github.com/MHordecki/LogPy',
py_modules = ['logpy'],
classifiers = [
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
)