-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 889 Bytes
/
setup.py
File metadata and controls
40 lines (37 loc) · 889 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
from pathlib import Path
from setuptools import setup
directory = Path(__file__).resolve().parent
with open(directory / 'README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='snakehdl',
version='0.2.1',
description='A simple, purely-functional HDL for Python',
author='Josh Moore',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/joshiemoore/snakehdl',
packages=[
'snakehdl',
'snakehdl.compilers',
'snakehdl.components',
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
],
install_requires=[
'numpy',
'dill',
],
extras_require={
'testing': [
'pytest',
'cocotb',
],
},
python_requires='>=3.10'
)