We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbcf13e commit 768bb86Copy full SHA for 768bb86
1 file changed
setup.py
@@ -1,6 +1,6 @@
1
import os
2
3
-from distutils.core import setup
+from setuptools import setup
4
5
version = os.getenv('version', '0.0').split('.')
6
if len(version) != 2:
@@ -11,7 +11,7 @@
11
f.write(f'MINOR_VERSION = {version[1]}\n')
12
13
setup(name='polyphenyprism',
14
- version='0.1',
+ version=version,
15
description='Protobuf files for Polypheny',
16
packages=['org/polypheny/prism'],
17
install_requires=[
0 commit comments