forked from girishchandranc/autosarfactory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (22 loc) · 752 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
# -*- 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='AutosarFactory',
version='0.2.3',
description='Python module for modelling autosar 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/autosarmodeller',
license="MIT",
packages=find_packages(exclude=('tests')),
include_package_data=True,
install_requires=["lxml>=4.6.1",
"ttkthemes>=3.2.0"],
python_requires='>=3.6',
)