forked from greatscottgadgets/luna
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
55 lines (49 loc) · 1.49 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
from setuptools import setup
packages = \
['luna',
'luna.gateware',
'luna.gateware.applets',
'luna.gateware.architecture',
'luna.gateware.interface',
'luna.gateware.interface.gateware_phy',
'luna.gateware.platform',
'luna.gateware.stream',
'luna.gateware.test',
'luna.gateware.test.contrib',
'luna.gateware.usb',
'luna.gateware.usb.devices',
'luna.gateware.usb.request',
'luna.gateware.usb.usb2',
'luna.gateware.usb.usb2.endpoints',
'luna.gateware.usb.usb2.interfaces',
'luna.gateware.utils']
package_data = \
{'': ['*']}
install_requires = \
['apollo-fpga>=0.0.4,<0.0.5',
'libusb1>=1.9.2,<2.0.0',
'amaranth @ git+https://github.com/amaranth-lang/amaranth.git@master',
'amaranth-boards @ git+https://github.com/amaranth-lang/amaranth-boards.git@master',
'amaranth-soc @ git+https://github.com/amaranth-lang/amaranth-soc.git@master',
'pyserial>=3.5,<4.0',
'pyusb>=1.1.1,<2.0.0',
'pyvcd>=0.2.4,<0.3.0',
'usb-protocol @ git+https://github.com/usb-tools/python-usb-protocol@master',
'ziglang>=0.8.0,<0.9.0']
setup_kwargs = {
'name': 'luna',
'version': '0.1.0.dev0',
'description': 'USB2 highspeed core, written in nMigen',
'long_description': None,
'author': 'Katherine Temkin',
'author_email': '[email protected]',
'maintainer': None,
'maintainer_email': None,
'url': None,
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'python_requires': '>=3.7,<4.0',
}
setup(**setup_kwargs)