forked from djc/fixlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (31 loc) · 855 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2010 KenTyde
# All rights reserved.
#
# This software is licensed as described in the file LICENSE,
# which you should have received as part of this distribution.
from setuptools import setup
import os
with open('README.rst') as f:
desc = f.read()
setup(
name='fixlib',
version='0.5',
description='Pythonic library for dealing with the FIX protocol',
long_description=desc,
author='Dirkjan Ochtman',
author_email='[email protected]',
license='BSD',
url='https://github.com/djc/fixlib',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=['fixlib'],
test_suite='fixlib.tests.suite',
)