Skip to content

Instantly share code, notes, and snippets.

@jameskyle
Last active August 27, 2015 17:55
Show Gist options
  • Save jameskyle/c613ad640372f39aa3a3 to your computer and use it in GitHub Desktop.
Save jameskyle/c613ad640372f39aa3a3 to your computer and use it in GitHub Desktop.
from setuptools import setup, find_packages
requires = [
'cliff',
'requests',
'numpy',
'scipy',
'Orange',
]
setup(
name="ml",
version=1.1,
packages=find_packages(),
include_package_data=True,
install_requires=requires,
entry_points={
'console_scripts': [
'ml = ml.app.main:main',
],
'ml.commands': [
'fetch = ml.app.fetch:FetchCommand',
],
},
zip_safe=False,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment