Skip to content

Commit

Permalink
Prep for 0.3.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
wesc committed Dec 24, 2020
1 parent 02a1213 commit 5cb5651
Showing 1 changed file with 20 additions and 37 deletions.
57 changes: 20 additions & 37 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,52 +1,35 @@


from setuptools import setup, find_packages


PACKAGE_DATA = {
'litecoder': [
'data/*.db',
'data/*.yml',
'data/*.p',
]
}

INSTALL_REQUIRES = [
'numpy',
'scipy',
'SQLAlchemy',
'us',
'boltons',
'cached-property',
'tqdm',
'attrs',
'ujson',
'python-box',
'PyYAML',
"marisa-trie>=0.7.5",
"ujson",
"tqdm",
"cached_property",
"sqlalchemy",
"download",
]

CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]


setup(
name='litecoder',
version='0.2.0',
description='US city + state geocoding.',
url='https://github.com/davidmcclure/litecoder',
license='MIT',
author='David McClure',
author_email='dclure@mit.edu',
name="litecoder",
version="0.3.0",
description="US city + state geocoding.",
url="https://github.com/social-machines/litecoder",
license="MIT",
author="Lab for Social Machines, MIT Media Lab",
author_email="wesc@media.mit.edu",
packages=find_packages(),
include_package_data=True,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
package_data=PACKAGE_DATA,
)

0 comments on commit 5cb5651

Please sign in to comment.