mirror of
https://github.com/openXC7/prjxray.git
synced 2026-08-28 17:05:11 +02:00
Merge pull request #1316 from antmicro/add-setup-package
python: add setup.py to allow installing prjxray libraries
This commit is contained in:
@@ -11,3 +11,4 @@ run.*.ok
|
||||
__pycache__
|
||||
*.pyc
|
||||
*.swp
|
||||
*.egg-info
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
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=setuptools.find_packages(),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: ISC License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user