-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (36 loc) · 1009 Bytes
/
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
39
40
41
from setuptools import setup, find_packages
INSTALL_REQUIRES = [
"marisa-trie>=0.7.5",
"ujson",
"tqdm",
"cached_property",
"sqlalchemy",
"download",
"PyYAML",
"us",
"boltons",
"attrs",
"scipy"
]
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",
]
setup(
name="litecoder",
version="0.3.2",
description="US city + state geocoding.",
url="https://github.com/social-machines/litecoder",
download_url="https://github.com/social-machines/litecoder/archive/v0.3.2.tar.gz",
license="MIT",
author="Lab for Social Machines, MIT Media Lab",
author_email="[email protected]",
packages=find_packages(),
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
)