Permalink
Browse files

Set up for PyPi distribution

  • Loading branch information...
1 parent d994a50 commit 686bda21bcdd6464664ce63d2f6bcd827ef8c724 @cndreisbach cndreisbach committed Feb 16, 2013
Showing with 16 additions and 7 deletions.
  1. +3 −0 MANIFEST.in
  2. +1 −1 README.rst
  3. +2 −2 TERMS.txt
  4. +10 −4 setup.py
View
@@ -0,0 +1,3 @@
+include README.rst
+include TERMS.txt
+include hmda_tools/data/code_sheet_data/*
View
@@ -1,4 +1,4 @@
-hmda-tools
+hmda_tools
==========
Tools to make analyzing HMDA data much easier.
View
@@ -1,6 +1,6 @@
-hmda-tools
+hmda_tools
Written by: Clinton Dreisbach, CFPB
-This software is released into the public domain. However, the author
+This software is released into the public domain. However, the author
would appreciate credit if this program or parts of it are used.
View
@@ -3,15 +3,15 @@
from setuptools import setup
def readme():
- with open('README.md') as f:
+ with open('README.rst') as f:
return f.read()
def requirements():
with open('requirements.txt') as f:
return map(lambda x: x.strip(), f.readlines())
-setup(name='hmda-tools',
- version='0.1',
+setup(name='hmda_tools',
+ version='0.1.1',
description='Tools to make working with HMDA data easier.',
long_description=readme(),
url='http://github.com/cfpb/hmda-tools',
@@ -27,4 +27,10 @@ def requirements():
'bin/hmda_load_geo',
'bin/hmda_extract_geo_data'
],
- zip_safe=False)
+ zip_safe=False,
+ classifiers=[
+ 'Development Status :: 3 - Alpha',
+ 'Environment :: Console',
+ 'License :: Public Domain',
+ 'Programming Language :: Python'
+ ])

0 comments on commit 686bda2

Please sign in to comment.