-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
47 lines (42 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# https://pypi.python.org/pypi/ushine
'''setuptools works by triggering subcommands from higher level commands.
The default commands 'install' and 'develop' trigger the following sequences:
install:
1. build
2. build_py
3. install_lib
4. install_egg_info
5. egg_info
6. install_scripts
develop:
1. egg_info
2. build_ext
'''
from setuptools import setup, find_packages
readme = open('README.txt').read()
setup(
name='ushine',
version='0.1.0',
author='Kayla Jacobs, Kwang-Sung Jun, Nathan Leiby, Elena Eneva',
author_email='[email protected]',
license='MIT',
description='Machine learning toolkit - originally built for Ushahidi\'s crowdmapping platform',
long_description=readme,
packages=find_packages(),
install_requires=[
# 'flask',
# 'sqlalchemy',
# 'scikit-learn',
],
dependency_links=[
],
entry_points={
# 'console_scripts': [],
},
tests_require=[
'nose',
'pep8',
'pyflakes',
],
test_suite='test',
)