-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
17 lines (16 loc) · 890 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
setup(
name = 'marge',
packages = ['marge'],
package_dir = {'marge': 'marge'},
package_data = {'marge': ['__init__.py', 'cleaner.py', 'config.py', 'config.yml', 'converter.py', 'enricher.py', 'enumerations.py', 'models.py', 'resolver.py', 'split.py', 'train.py', 'utils.py','configs/__init__.py', 'configs/first_pass.py', 'configs/second_pass.py', 'tests/__init__.py', 'tests/cleaner.py', 'tests/models.py', 'tests/utils.py']},
version = '0.1',
description = 'Model that Automatically Resolves Geographic Entities',
author = 'Daniel J. Dufour',
author_email = '[email protected]',
url = 'https://github.com/DanielJDufour/marge',
download_url = 'https://github.com/DanielJDufour/marge/tarball/download',
keywords = ['location','geo','python','tensorflow'],
classifiers = [],
install_requires=["numpy", "pandas", "scipy"]
)