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
6bd8566c
Commit
6bd8566c
authored
12 years ago
by
Alain Péteut
Committed by
Sebastien Bourdeauducq
12 years ago
Browse files
Options
Download
Email Patches
Plain Diff
setup.py: fix to catch all modules
Signed-off-by:
Alain Péteut
<
peteut@space.unibe.ch
>
parent
5f53e647
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
+14
-3
setup.py
setup.py
+14
-3
No files found.
setup.py
View file @
6bd8566c
#!/usr/bin/env python3.2
# vim: noexpandtab:tabstop=8:softtabstop=8
""" Migen's distutils distribution and installation script. """
import
sys
,
os
...
...
@@ -7,9 +8,19 @@ from distutils.core import setup
here
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
README
=
open
(
os
.
path
.
join
(
here
,
"README"
)).
read
()
if
sys
.
version_info
<
(
3
,
2
):
raise
SystemExit
(
"migen requires python 3.2 or greater"
)
required_version
=
(
3
,
2
)
if
sys
.
version_info
<
required_version
:
raise
SystemExit
(
"migen requires python {0} or greater"
.
format
(
"."
.
join
(
map
(
str
,
required_version
))))
packages
=
[
'migen'
]
packages_dir
=
os
.
path
.
sep
.
join
((
here
,
packages
[
0
]))
for
entry
in
os
.
listdir
(
packages_dir
):
if
(
os
.
path
.
isdir
(
os
.
path
.
sep
.
join
((
packages_dir
,
entry
)))
and
os
.
path
.
isfile
(
os
.
path
.
sep
.
join
((
packages_dir
,
entry
,
'__init__.py'
)))):
packages
.
append
(
'.'
.
join
((
packages
[
0
],
entry
)))
packages_dir
=
{
''
:
'migen'
}
setup
(
name
=
"migen"
,
version
=
"unknown"
,
...
...
@@ -19,7 +30,7 @@ setup(
author_email
=
"sebastien@milkymist.org"
,
url
=
"http://www.milkymist.org"
,
download_url
=
"https://github.com/milkymist/migen"
,
packages
=
[
''
,
'migen'
]
,
packages
=
packages
,
license
=
"GPL"
,
platforms
=
[
"Any"
],
keywords
=
"HDL ASIC FPGA hardware design"
,
...
...
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