diff options
author | Yury Selivanov <yury@magic.io> | 2018-03-30 17:34:03 -0400 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-03-30 17:34:44 -0400 |
commit | 6e7635dd0275f9f2e5c063629743598aa8bc23d1 (patch) | |
tree | 546adf098c1713f5e6a5149b984b837725ba6e36 /setup.py | |
parent | 09e41b96d9c31fac9cadfe5ce902d23fd37188af (diff) | |
download | immutables-6e7635dd0275f9f2e5c063629743598aa8bc23d1.tar.gz immutables-6e7635dd0275f9f2e5c063629743598aa8bc23d1.zip |
Fix a nit in README; add a version to setup.py
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,6 +2,8 @@ import platform import setuptools +VERSION = '0.1' + CFLAGS = ['-O2'] if platform.uname().system != 'Windows': @@ -10,6 +12,7 @@ if platform.uname().system != 'Windows': setuptools.setup( name='immutables', + version=VERSION, description='Immutable Collections', classifiers=[ 'License :: OSI Approved :: Apache Software License', |