Skip to content

Commit

Permalink
Create a proper Python module egg setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
strichter committed Jul 23, 2009
1 parent d372e16 commit 2b5ff34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup

setup (
name='roman',
Expand All @@ -16,6 +16,8 @@
'Natural Language :: English',
'Operating System :: OS Independent'],
url = 'http://pypi.python.org/pypi/roman',
package_dir={"": "src"},
py_modules=["roman"],
include_package_data = True,
zip_safe = True,
)
File renamed without changes.

0 comments on commit 2b5ff34

Please sign in to comment.