-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.14 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
from setuptools import find_packages, setup
# Use README.md as the long_description for the package
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
setup(
name="pyOSPParser",
version="0.5.0",
url="https://github.com/kevinksyTRD/pyOSPParser",
description="A module to parse or deploy XML/JSON files for Open Simulation Platform.",
long_description_content_type="text/markdown",
long_description=long_description,
license="Apache License 2.0",
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
project_urls={
"Source": "https://github.com/kevinksyTRD/pyOSPParser",
"Bug Reports": "https://github.com/kevinksyTRD/pyOSPParser/issues",
},
packages=find_packages(),
include_package_data=True,
setup_requires=[
'xmlschema~=1.2.2'
],
install_requires=[
'xmlschema~=1.2.2'
],
python_requires=">=3.8",
keywords="Open-Simulation-Platform Parser XML JSON",
)