Created
December 1, 2013 22:08
-
-
Save mcepl/7741459 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/.hgignore b/.hgignore | |
new file mode 100644 | |
--- /dev/null | |
+++ b/.hgignore | |
@@ -0,0 +1,9 @@ | |
+syntax:glob | |
+ | |
+*.pyc | |
+*.*~ | |
+*.*.orig | |
+*.egg-info | |
+doc/build | |
+build | |
+dist | |
diff --git a/setup.cfg b/setup.cfg | |
new file mode 100644 | |
--- /dev/null | |
+++ b/setup.cfg | |
@@ -0,0 +1,3 @@ | |
+[egg_info] | |
+tag_build = dev | |
+tag_svn_revision = true | |
diff --git a/setup.py b/setup.py | |
new file mode 100644 | |
--- /dev/null | |
+++ b/setup.py | |
@@ -0,0 +1,26 @@ | |
+from setuptools import setup, find_packages | |
+import sys, os | |
+ | |
+version = '0.0' | |
+ | |
+setup(name='ropemode', | |
+ version=version, | |
+ description="", | |
+ long_description="""\ | |
+""", | |
+ classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
+ keywords='', | |
+ author='', | |
+ author_email='', | |
+ url='', | |
+ license='', | |
+ packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
+ include_package_data=True, | |
+ zip_safe=False, | |
+ install_requires=[ | |
+ # -*- Extra requirements: -*- | |
+ ], | |
+ entry_points=""" | |
+ # -*- Entry points: -*- | |
+ """, | |
+ ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment