mirror of https://github.com/openXC7/prjxray.git
Merge pull request #1344 from antmicro/add-setup-package
setup.py: add fasm2frames as entry point instead of packaging utils
This commit is contained in:
commit
2ef6f1a581
6
setup.py
6
setup.py
|
|
@ -12,10 +12,12 @@ setuptools.setup(
|
|||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/SymbiFlow/prjxray",
|
||||
packages=['prjxray', 'utils'],
|
||||
packages=['prjxray'],
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: ISC License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
)
|
||||
entry_points={
|
||||
'console_scripts': ['fasm2frames=utils.fasm2frames:main'],
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue