Permalink
Browse files
Set up for PyPi distribution
- Loading branch information...
Showing
with
16 additions
and
7 deletions.
-
+3
−0
MANIFEST.in
-
+1
−1
README.rst
-
+2
−2
TERMS.txt
-
+10
−4
setup.py
|
|
@@ -0,0 +1,3 @@ |
|
|
+include README.rst
|
|
|
+include TERMS.txt
|
|
|
+include hmda_tools/data/code_sheet_data/*
|
|
|
@@ -1,4 +1,4 @@ |
|
|
-hmda-tools
|
|
|
+hmda_tools
|
|
|
==========
|
|
|
|
|
|
Tools to make analyzing HMDA data much easier.
|
|
|
|
|
@@ -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.
|
|
@@ -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