Skip to content

Commit efe5fac

Browse files
authored
Merge pull request #58 from PyFPGA/improve-setup
Small adjustments on the details of the Python package
2 parents 835f371 + 6e1ab34 commit efe5fac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
long_description = fh.read()
77

88
setup(
9-
name='pyfpga',
9+
name='PyFPGA',
1010
version=pyfpga.__version__,
1111
description='A Python package to use FPGA development tools programmatically',
1212
long_description=long_description,
@@ -19,9 +19,9 @@
1919
packages=find_packages(),
2020
entry_points={
2121
'console_scripts': [
22-
'fpga-hdl2bit = pyfpga.helpers.hdl2bit:main',
23-
'fpga-prj2bit = pyfpga.helpers.prj2bit:main',
24-
'fpga-bitprog = pyfpga.helpers.bitprog:main'
22+
'hdl2bit = pyfpga.helpers.hdl2bit:main',
23+
'prj2bit = pyfpga.helpers.prj2bit:main',
24+
'bitprog = pyfpga.helpers.bitprog:main'
2525
],
2626
},
2727
classifiers=[

0 commit comments

Comments
 (0)