Skip to content
Snippets Groups Projects
setup.py 1.31 KiB
Newer Older
from setuptools import setup, find_packages
imcovangent's avatar
imcovangent committed
version = '0.8.2'
def readme():
    with open('readme.md') as f:
        return f.read()


setup(name='kadmos',
Lukas Müller's avatar
Lukas Müller committed
      version=version,
      description='Knowledge- and graph-based Agile Design for Multidisciplinary Optimization System',
      long_description=readme(),
      classifiers=[
        'Development Status :: 4 - Beta',
        'License :: OSI Approved :: Apache Software License',
        'Programming Language :: Python :: 2.7',
        'Intended Audience :: Science/Research',
        'Topic :: Scientific/Engineering',
      ],
      keywords='optimization agile multidisciplinary graph engineering',
      url='https://bitbucket.org/imcovangent/kadmos',
      download_url='https://bitbucket.org/imcovangent/kadmos/raw/master/dist/'+version+'.tar.gzip',
      author='Imco van Gent',
      author_email='i.vangent@tudelft.nl',
      license='Apache Software License',
      install_requires=[
            'lxml',
            'tabulate',
            'flask',
            'matplotlib',
            'matlab',
            'networkx>=2.0',
      ],
      include_package_data=True,
      zip_safe=False)