-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 766 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
# local install of library: pip3 install -e .
setup(
name='pybondmachine',
version='1.1.12',
packages=find_packages(),
install_requires=[
# Add any dependencies required by your package
],
entry_points={
'console_scripts': [
# If your package has any command line scripts, define them here
],
},
author='Giulio Bianchini',
author_email='gibianch@pg.infn.it',
description='pybondmachine is the Python library designed to streamline the development of FPGA accelerators through the use of the BondMachine framework.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='',
license='',
)