File size: 836 Bytes
4cec618
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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")