projects
/
g-pypi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cf1faa2
)
Move dependencies back into setup.py in Distutils' syntax.
author
W. Trevor King
<wking@drexel.edu>
Tue, 7 Jun 2011 21:50:52 +0000
(17:50 -0400)
committer
W. Trevor King
<wking@drexel.edu>
Tue, 7 Jun 2011 21:50:52 +0000
(17:50 -0400)
README
patch
|
blob
|
history
setup.py
patch
|
blob
|
history
diff --git
a/README
b/README
index 8e1e92d1482c016ba4cdc609ca72f2653725ed1e..f13f75c78a5ebfa75a670815333d899d4ccb8fbf 100644
(file)
--- a/
README
+++ b/
README
@@
-97,15
+97,6
@@
If you have emerged and configured app-portage/layman::
# layman --add pythonhead
# emerge g-pypi
-Dependencies
-------------
-
-* Cheetah
-* gentoolkit
-* portage
-* pygments
-* yolk
-
Permisions
==========
diff --git
a/setup.py
b/setup.py
index 26d7bd388c04e209a9dc99b9c2917eab7c817363..854b815876dbe0dda11352fbd1e504645b9ebdfa 100644
(file)
--- a/
setup.py
+++ b/
setup.py
@@
-54,6
+54,14
@@
setup(
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=['g_pypi'],
+ provides=['g_pypi'],
+ requires=[
+ 'Cheetah',
+ 'gentoolkit',
+ 'portage',
+ 'Pygments',
+ 'yolk',
+ ],
package_data={'g_pypi':['ebuild.tmpl']},
scripts=['scripts/g-pypi'],
cmdclass=cmdclass,