Skip to content

Commit 5cb5651

Browse files
committed
Prep for 0.3.0 release.
1 parent 02a1213 commit 5cb5651

File tree

1 file changed

+20
-37
lines changed

1 file changed

+20
-37
lines changed

setup.py

Lines changed: 20 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,35 @@
1-
2-
31
from setuptools import setup, find_packages
42

53

6-
PACKAGE_DATA = {
7-
'litecoder': [
8-
'data/*.db',
9-
'data/*.yml',
10-
'data/*.p',
11-
]
12-
}
13-
144
INSTALL_REQUIRES = [
15-
'numpy',
16-
'scipy',
17-
'SQLAlchemy',
18-
'us',
19-
'boltons',
20-
'cached-property',
21-
'tqdm',
22-
'attrs',
23-
'ujson',
24-
'python-box',
25-
'PyYAML',
5+
"marisa-trie>=0.7.5",
6+
"ujson",
7+
"tqdm",
8+
"cached_property",
9+
"sqlalchemy",
10+
"download",
2611
]
2712

2813
CLASSIFIERS = [
29-
'Development Status :: 3 - Alpha',
30-
'Intended Audience :: Developers',
31-
'License :: OSI Approved :: MIT License',
32-
'Programming Language :: Python',
33-
'Programming Language :: Python :: 3.5',
34-
'Programming Language :: Python :: 3.6',
35-
'Programming Language :: Python :: 3.7',
14+
"Development Status :: 3 - Alpha",
15+
"Intended Audience :: Developers",
16+
"License :: OSI Approved :: MIT License",
17+
"Programming Language :: Python",
18+
"Programming Language :: Python :: 3.5",
19+
"Programming Language :: Python :: 3.6",
20+
"Programming Language :: Python :: 3.7",
3621
]
3722

3823

3924
setup(
40-
name='litecoder',
41-
version='0.2.0',
42-
description='US city + state geocoding.',
43-
url='https://github.com/davidmcclure/litecoder',
44-
license='MIT',
45-
author='David McClure',
46-
author_email='dclure@mit.edu',
25+
name="litecoder",
26+
version="0.3.0",
27+
description="US city + state geocoding.",
28+
url="https://github.com/social-machines/litecoder",
29+
license="MIT",
30+
author="Lab for Social Machines, MIT Media Lab",
31+
author_email="wesc@media.mit.edu",
4732
packages=find_packages(),
48-
include_package_data=True,
4933
classifiers=CLASSIFIERS,
5034
install_requires=INSTALL_REQUIRES,
51-
package_data=PACKAGE_DATA,
5235
)

0 commit comments

Comments
 (0)