#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # Copyright (C) 2017-2020 The Project X-Ray Authors. # # Use of this source code is governed by a ISC-style # license that can be found in the LICENSE file or at # https://opensource.org/licenses/ISC # # SPDX-License-Identifier: ISC import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="prjxray", version="0.0.1", author="SymbiFlow Authors", author_email="symbiflow@lists.librecores.org", description="Project X-Ray libraries", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/SymbiFlow/prjxray", packages=['prjxray'], install_requires=[ 'fasm', 'intervaltree', 'numpy', # FIXME: remove dependency once https://github.com/SymbiFlow/prjxray/issues/1624 # is fixed 'pyjson5', 'pyyaml', 'simplejson', ], classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: ISC License", "Operating System :: OS Independent", ], entry_points={ 'console_scripts': ['fasm2frames=utils.fasm2frames:main'], })