-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (28 loc) · 948 Bytes
/
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
import os
from setuptools import setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='axilent',
packages=['axilent', 'axilent.examples'],
package_data={'': ['vhdl/*.core', 'vhdl/*.vhd']},
use_scm_version={
'relative_to': __file__,
'write_to': 'axilent/version.py',
},
setup_requires=['setuptools_scm'],
author='Ben Reynwar',
author_email='[email protected]',
description=('Tools for describing a sequence of Axi4Lite commands.'),
long_description=long_description,
long_description_content_type='text/x-rst',
license='MIT',
keywords=['VHDL', 'hdl', 'rtl', 'FPGA', 'ASIC', 'Xilinx', 'Altera'],
url='https://github.com/benreynwar/axilent',
install_requires=[
'jinja2>=2.8',
'pytest',
'slvcodec>=0.4.10',
],
)