Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kestrel Collaboration
Kestrel LiteX
migen
Commits
967fe63c
Commit
967fe63c
authored
1 month ago
by
Raptor Engineering Development Team
Browse files
Options
Download
Email Patches
Plain Diff
Revert "Replace setup.py with pyproject.toml"
This reverts commit
2cfee3e0
.
parent
c7778c64
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
setup.py
setup.py
+44
-0
No files found.
setup.py
0 → 100644
View file @
967fe63c
#!/usr/bin/env python3
import
sys
from
setuptools
import
setup
from
setuptools
import
find_packages
if
sys
.
version_info
[:
3
]
<
(
3
,
3
):
raise
SystemExit
(
"You need Python 3.3+"
)
requirements
=
[
"colorama"
]
setup
(
name
=
"migen"
,
version
=
"0.9.2"
,
long_description_content_type
=
'text/markdown'
,
description
=
"Python toolbox for building complex digital hardware"
,
long_description
=
open
(
"README.md"
).
read
(),
author
=
"Sebastien Bourdeauducq"
,
author_email
=
"sb@m-labs.hk"
,
url
=
"https://m-labs.hk"
,
download_url
=
"https://github.com/m-labs/migen"
,
packages
=
find_packages
(),
install_requires
=
requirements
,
test_suite
=
"migen.test"
,
license
=
"BSD"
,
platforms
=
[
"Any"
],
keywords
=
[
"HDL"
,
"ASIC"
,
"FPGA"
,
"hardware design"
],
classifiers
=
[
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
,
"Environment :: Console"
,
"Development Status :: 4 - Beta"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: BSD License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 3.3"
,
"Programming Language :: Python :: 3.4"
,
"Programming Language :: Python :: 3.5"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
],
)
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment