-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.23 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
from setuptools import setup, find_packages
# Read the contents of your requirements.txt file
with open('requirements.txt') as f:
required = f.read().splitlines()
# Read the long description from README.md
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='ft2bt',
version='0.7.0',
packages=find_packages(),
install_requires=required, # Use the list from requirements.txt
entry_points={
'console_scripts': [
'ft2bt=ft2bt.scripts.ft2bt:main',
],
},
author='Carlos Conejo',
author_email='carlos.conejo@upc.edu',
description='Automatic conversion from fault trees into behavior trees with formal verification capabilities',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cconejob/ft2bt_converter.git',
license='GNU GPLv3',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
package_data={
'ft2bt.scripts.formal_verification': ['smv_header.txt'],
},
include_package_data=True,
)