-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (22 loc) · 753 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (22 loc) · 753 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='AutosarConfigReader',
version='0.1.7',
description='Python module for reading autosar module configuration arxml files',
long_description=readme,
long_description_content_type="text/markdown",
author='Girish Chandran',
author_email='girishchandran.tpm@gmail.com',
url='https://github.com/girishchandranc/autosarconfigreader',
license="MIT",
packages=find_packages(exclude=('tests')),
include_package_data=True,
install_requires=["lxml>=4.6.1",
"Jinja2>=2.11.2"],
python_requires='>=3.6',
)