Skip to content

Commit

Permalink
Fixed setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
xtrojak committed Feb 14, 2022
1 parent c9c0369 commit 8fd4be1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(name='eBCSgen',
version='1.1',
version='1.3',
description='eBSCgen is a tool for development and analysis of models written in Biochemical Space Language',
url='https://github.com/sybila/eBCSgen',
author='Mate Trojak',
author_email='[email protected]',
license='MIT',
packages=['eBCSgen'],
packages=find_packages(exclude=['*Testing*']),
test_suite="Testing",
zip_safe=False)

0 comments on commit 8fd4be1

Please sign in to comment.