Commit 52120fed by Vik Paruchuri

Package things up, trim out excess dependencies

parent 80f01ca8
python-pip
python-scipy
python-mysqldb
ipython
nginx
git
redis-server
libmysqlclient-dev
gfortran
libblas3gf
libblas-dev
......@@ -14,9 +7,5 @@ liblapack-dev
libatlas-base-dev
libxml2-dev
libxslt1-dev
libreadline6
libreadline6-dev
build-essential
curl
aspell
python
\ No newline at end of file
Metadata-Version: 1.0
Name: machine-learning
Version: 0.1
Summary: Machine learning based automated text classification for essay scoring.
Home-page: https://github.com/edx/machine-learning
Author: Vik Paruchuri
Author-email: vik@edx.org
License: AGPL
Description: UNKNOWN
Keywords: ml machine learning nlp essay education
Platform: UNKNOWN
setup.py
machine_learning.egg-info/PKG-INFO
machine_learning.egg-info/SOURCES.txt
machine_learning.egg-info/dependency_links.txt
machine_learning.egg-info/top_level.txt
\ No newline at end of file
from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name = "machine-learning",
version = "0.1",
packages = find_packages(),
package_data = {
'': ['*.txt', '*.rst', '*.p'],
},
author = "Vik Paruchuri",
author_email = "vik@edx.org",
description = "Machine learning based automated text classification for essay scoring.",
license = "AGPL",
keywords = "ml machine learning nlp essay education",
url = "https://github.com/edx/machine-learning",
include_package_data = True,
)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment