mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-31 10:06:28 +02:00
Build fixes.
Bumping pymod version to 0.26.0.dev1 Improvements to pypi package. Attempting to build macos10.11 version with py3.
This commit is contained in:
@@ -191,7 +191,7 @@ class Config(object):
|
||||
"""
|
||||
Gets the version string
|
||||
"""
|
||||
return "0.26.0.dev0"
|
||||
return "0.26.0.dev1"
|
||||
|
||||
|
||||
config = Config()
|
||||
@@ -346,11 +346,14 @@ rdb = Extension(config.root + '.rdb',
|
||||
# Core setup function
|
||||
|
||||
if __name__ == '__main__':
|
||||
setup(name = config.root,
|
||||
version = config.version(),
|
||||
description = 'KLayout standalone Python package',
|
||||
author = 'Matthias Koefferlein',
|
||||
author_email = '[email protected]',
|
||||
packages = [config.root],
|
||||
package_dir = {config.root: 'src/pymod/distutils_src'},
|
||||
ext_modules = [_tl, _gsi, _pya, _db, _rdb] + db_plugins + [tl, db, rdb])
|
||||
setup(name=config.root,
|
||||
version=config.version(),
|
||||
license='GNU GPLv3',
|
||||
description='KLayout standalone Python package',
|
||||
long_description='TODO',
|
||||
author='Matthias Koefferlein',
|
||||
author_email='[email protected]',
|
||||
url='https://github.com/klayoutmatthias/klayout',
|
||||
packages=[config.root],
|
||||
package_dir={config.root: 'src/pymod/distutils_src'},
|
||||
ext_modules=[_tl, _gsi, _pya, _db, _rdb] + db_plugins + [tl, db, rdb])
|
||||
|
||||
Reference in New Issue
Block a user