-
Notifications
You must be signed in to change notification settings - Fork 151
/
setup.py
44 lines (41 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/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="[email protected]",
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'],
})