-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
77 lines (70 loc) · 2.56 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Description here.
http://github.com/adbar/geokelone
"""
from codecs import open # python2
import os
from setuptools import find_packages, setup
#try:
# from setuptools import setup
#except ImportError:
# from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
# packages = find_packages() # packages = ['geokelone']
def readme():
with open(os.path.join(here, 'README.rst'), 'r', 'utf-8') as readmefile:
return readmefile.read()
setup(
name='geokelone',
version='0.1.0',
description='integrates spatial and textual data processing tools into a modular software package which features preprocessing, geocoding, disambiguation and visualization',
long_description=readme(),
classifiers=[
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
#'Development Status :: 1 - Planning',
'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
#'Development Status :: 4 - Beta',
#'Development Status :: 5 - Production/Stable',
#'Development Status :: 6 - Mature',
#'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
#'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Text Processing :: Linguistic',
],
keywords=['geocoder', 'mapping', 'digital-humanities', 'text-visualization'],
url='http://github.com/adbar/geokelone',
author='Adrien Barbaresi',
author_email='[email protected]',
license='GPLv3+',
packages=find_packages(),
include_package_data=True,
install_requires=[
'adjustText',
'cartopy == 0.16.0',
'cairocffi',
'exrex',
'matplotlib >= 2.1.0',
'requests',
'pyproj',
'shapely',
],
# extras_require={}
# python_requires='>=3',
tests_require=['pytest', 'tox'],
zip_safe=False,
)