2020-05-06 04:42:15 +02:00
|
|
|
#!/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
|
|
|
|
|
|
2020-04-29 12:55:04 +02:00
|
|
|
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",
|
2020-06-01 11:13:49 +02:00
|
|
|
packages=['prjxray'],
|
2021-01-14 22:27:26 +01:00
|
|
|
install_requires=[
|
|
|
|
|
'sdf-timing @ git+https://github.com/symbiflow/python-sdf-timing',
|
|
|
|
|
'fasm @ git+https://github.com/symbiflow/fasm',
|
|
|
|
|
'intervaltree',
|
|
|
|
|
'numpy',
|
|
|
|
|
'openpyxl',
|
|
|
|
|
'ordered-set',
|
|
|
|
|
'parse',
|
|
|
|
|
'progressbar2',
|
|
|
|
|
'pyjson5',
|
|
|
|
|
'pytest',
|
|
|
|
|
'pyyaml',
|
|
|
|
|
'scipy>=1.2.1',
|
|
|
|
|
'simplejson',
|
|
|
|
|
'sympy',
|
|
|
|
|
'textx',
|
|
|
|
|
],
|
2020-04-29 12:55:04 +02:00
|
|
|
classifiers=[
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"License :: OSI Approved :: ISC License",
|
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
],
|
2020-05-25 14:05:04 +02:00
|
|
|
entry_points={
|
2020-06-16 02:28:42 +02:00
|
|
|
'console_scripts': ['fasm2frames=utils.fasm2frames:main'],
|
2020-05-25 14:05:04 +02:00
|
|
|
})
|