-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
37 lines (34 loc) · 1.13 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
# -*- coding: utf-8 -*-
import io
from setuptools import setup, Extension
def readme():
with io.open('README.rst') as f:
return f.read()
setup(
name='mimir',
version='0.1.dev1',
description='A mini-framework for logging JSON-compatible objects',
long_description=readme(),
url='https://github.com/bartvm/mimir',
author=u'Bart van Merriënboer',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
keywords='logging machine learning',
packages=['mimir'],
setup_requires=['Cython'],
install_requires=['pyzmq', 'six', 'simplejson'],
ext_modules=[Extension("mimir.gzlog", ["gzlog/gzlog.pyx"],
libraries=['z'])],
zip_safe=False
)