-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.01 KB
/
setup.py
File metadata and controls
37 lines (32 loc) · 1.01 KB
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
#!/usr/bin/env python
#-*- coding:utf-8 -*-
"""
*.py: Description of what * does.
Last Modified:
"""
__author__ = "Sathappan Muthiah"
__email__ = "sathap1@vt.edu"
__version__ = "0.0.1"
from distutils.core import setup
from glob import glob
import os
datafiles = list(glob('./TextGeo/**/*.txt', recursive=True)) + list(glob('./TextGeo/**/*.json', recursive=True))
datafiles = [os.path.relpath(path, 'TextGeo') for path in datafiles]
#print(datafiles)
setup(
name="TextGeo", # Replace with your own username
version="0.0.1",
url="https://github.com/sathappanspm/geocoding",
author="Sathappan Muthiah",
author_email="sathap1@vt.edu",
description="Geocode Text Articles",
packages=['TextGeo', 'TextGeo.src', 'TextGeo.src.geoutils'],
package_dir={'': './'},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_data={'TextGeo': datafiles},
python_requires='>=3.6',
)