Skip to content

Commit 768bb86

Browse files
committed
Switch to setuptools
1 parent bbcf13e commit 768bb86

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
from distutils.core import setup
3+
from setuptools import setup
44

55
version = os.getenv('version', '0.0').split('.')
66
if len(version) != 2:
@@ -11,7 +11,7 @@
1111
f.write(f'MINOR_VERSION = {version[1]}\n')
1212

1313
setup(name='polyphenyprism',
14-
version='0.1',
14+
version=version,
1515
description='Protobuf files for Polypheny',
1616
packages=['org/polypheny/prism'],
1717
install_requires=[

0 commit comments

Comments
 (0)