forked from makerplane/FIX-Gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.47 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
import setuptools
import glob
import os
with open("README.rst", "r") as fh:
long_description = fh.read()
datafiles = [('fixgw/config', ['config/default.yaml', 'config/default.db', 'config/default.ini','config/fg_172.ini']),
('fixgw/config/canfix', ['config/canfix/map.yaml']),
# ('share/fixgw/doc', ['doc/_build/FIXGateway-html.tar.gz', 'doc/_build/latex/FIXGateway.pdf']),
('fixgw/share/fixgw', ['fixgw/plugins/fgfs/fix_fgfs.xml']),
]
setuptools.setup(
name="fixgw",
version="0.1.0",
author="Phil Birkelbach",
author_email="[email protected]",
description="FIX-Gateway: Gateway software for the Flight Information eXchange protocols",
long_description=long_description,
#long_description_content_type="text/x-rst",
url="https://github.com/makerplane/FIX-Gateway",
packages=setuptools.find_packages(exclude=["tests.*", "tests"]),
#package_data = {'fixgw':['config/*']},
install_requires = ['pyyaml','python-daemon'],
#data_files = datafiles,
#scripts = ['bin/fixgw', 'bin/fixgwc'],
#package_data= {'fixgw': ["config/default.yaml"]},
include_package_data= True,
entry_points = {
'console_scripts': ['fixgw=fixgw.server:main', 'fixgwc=fixgw.client:main'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)"
"Operating System :: POSIX :: Linux",
],
test_suite = 'tests',
)