-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.35 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.35 KB
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
from setuptools import setup, find_packages
# Read dependencies from requirements.txt
with open("requirements.txt") as f:
install_requires = f.read().splitlines()
setup(
name="orchestratransposer",
version="1.0.0",
description="Convert an Orchestra XML file to or from another schema",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/FIXTradingCommunity/unified2orchestra",
packages=find_packages(),
package_data={
"orchestratransposer.orchestra": ["schemas/**/*.xsd"],
"orchestratransposer.sbe": ["schemas/**/*.xsd"],
"orchestratransposer.unified": ["schemas/**/*.xsd"],
},
entry_points={
"console_scripts": [
"orchestratransposer=orchestratransposer.__main__:main",
],
},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
python_requires=">=3.7",
install_requires=install_requires,
license="Apache License 2.0",
keywords="FIX protocol, Orchestra, Unified Repository",
project_urls={
"Bug Reports": "https://github.com/FIXTradingCommunity/unified2orchestra/issues",
"Source": "https://github.com/FIXTradingCommunity/unified2orchestra",
},
)