-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.18 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
from setuptools import setup, find_packages
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='amgen',
version='0.0.1',
author="Hans Baier",
author_email="hansfbaier@gmail.com",
description="amaranth HDL command line tool for generating verilog, rtlil, cxxrtl and showing design diagrams",
long_description=long_description,
long_description_content_type='text/markdown',
license_files = ('LICENSE.txt',),
platforms='linux',
url="https://github.com/hansfbaier/amgen/",
project_urls={
"Bug Tracker": "https://github.com/hansfbaier/amgen/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
'Operating System :: POSIX',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
],
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
],
entry_points='''
[console_scripts]
amgen=amgen:cli
''',
)