-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
executable file
·38 lines (32 loc) · 1.05 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
#!/usr/bin/env python2.7
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(name="cleaningbenchmark",
# semantic versioning is a simple way to define versions
# http://semver.org/
version="0.0.1",
description="",
license="MIT",
author="Sanjay Krishnan",
author_email="",
url="https://github.com/sjyk/datacleaning-benchmark",
packages = find_packages(),
include_package_data = True,
# ensures that pipexample is defined as a module
package_dir = {'cleaningbenchmark' : 'cleaningbenchmark'},
# ensures that pipexample/*.txt is included in the package
package_data={
#'datasets':['*.txt']
},
# ensures that runexample.py can be run from the command line as a program
scripts = [
'test/testcleaningbenchmark.py'
],
install_requires = [
'click', 'scikit-learn', 'numpy', 'usaddress'
],
keywords= "")