From b80feefbd6479ec8a4d4668d8a5b85b7c2bcea17 Mon Sep 17 00:00:00 2001 From: abhish Date: Sun, 19 Mar 2017 13:25:16 +0530 Subject: [PATCH] added setup.py and setup.cfg --- notebooks/textbrew-examples.ipynb | 10 +++++----- setup.cfg | 2 ++ setup.py | 26 ++++++++++++++++++++++++++ 3 files changed, 33 insertions(+), 5 deletions(-) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/notebooks/textbrew-examples.ipynb b/notebooks/textbrew-examples.ipynb index e4eeb6f..ceb7404 100644 --- a/notebooks/textbrew-examples.ipynb +++ b/notebooks/textbrew-examples.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "metadata": { "collapsed": false }, @@ -14,7 +14,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "metadata": { "collapsed": true }, @@ -83,7 +83,7 @@ "language_info": { "codemirror_mode": { "name": "ipython", - "version": 3 + "version": 3.0 }, "file_extension": ".py", "mimetype": "text/x-python", @@ -94,5 +94,5 @@ } }, "nbformat": 4, - "nbformat_minor": 2 -} + "nbformat_minor": 0 +} \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e14b026 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from setuptools import setup +import setuptools + +setup( + name='textbrew', + packages=setuptools.find_packages(), + version='0.1.0', + description='Brew your raw text to a more structured and Machine Learning complaint format.', + license='MIT', + author='datawarp', + author_email='rishy.s13@gmail.com', + url='https://github.com/datawarp/textbrew', + download_url='https://github.com/datawarp/textbrew.git', + install_requires=[ + 'numpy==1.12.0', + 'spacy==1.6.0' + ], + keywords=['textbrew'], + classifiers=['Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Topic :: Text Cleaning', + 'License :: MIT License', + 'Programming Language :: Python :: 3.5', + ], + +)