forked from kennt/fixtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 951 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='fixtest',
version='0.1.1',
packages=find_packages(),
install_requires=['twisted>=14.0.0'],
license='MIT',
author='Kenn Takara',
author_email='[email protected]',
entry_points={
'console_scripts': ['fixtest=fixtest.base.runner:main'],
},
classifiers={
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Networking',
'Topic :: Software Development :: Testing',
},
url='https://github.com/kennt/fixtest',
long_description=read('README.rst'),
description='Tool for testing FIX (Financial Information eXchange protocol) services',
)