de-francophones's picture
Upload 2378 files
4cec618 verified
raw
history blame
836 Bytes
from setuptools import setup, find_packages
requires = [
'requests',
'purl',
'pycountry',
'flickrapi',
'python-dateutil',
'BeautifulSoup4',
'shapely',
]
setup(
name='tsammalexdata',
version='0.0',
description='data for the tsammalex site',
long_description='',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
],
author='',
author_email='',
url='',
keywords='data linguistics',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points={
'console_scripts': [
'updatetaxa = tsammalexdata.commands:update_taxa']
},
tests_require=[],
test_suite="tsammalexdata")