-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (24 loc) · 823 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
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='hwtBuildsystem',
version='0.1',
description='buildsystem for for HWToolkit (hwt, the fpga devel. library)',
long_description=long_description,
url='https://github.com/Nic30/hwtBuildsystem',
author='Michal Orsak',
author_email='[email protected]',
install_requires=[
'pexpect', # CLI app io
'hwt>=3.8', # core library of HWToolkit
],
test_requires=[
"hwtLib>=2.9",
],
license='MIT',
packages = find_packages(),
zip_safe=False)