Skip to content

Commit

Permalink
1.1.5 fixed build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomansion committed Oct 19, 2022
1 parent 355c77b commit fbc6907
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
from setuptools import setup

with open('requirements.txt') as f:
required = f.read().splitlines()

setup(
name='factorioBlueprintAnalyser',
version='1.1.4',
version='1.1.5',
description="A python library analyse Factorio Blueprints and find bottlenecks.",
url="https://github.com/tomansion/factorio_blueprint_analyser_app/",
author="Tom Mansion",
license="MIT License",
install_requires=required,
install_requires=["termcolor==2.0.1", "PyYAML==5.4.1", "pyvis==0.3.0"],
packages=['factorio_blueprint_analyser']
)

0 comments on commit fbc6907

Please sign in to comment.