-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (33 loc) · 2.19 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
name='mobilitydb-sqlalchemy',
version='0.4.1',
description='MobilityDB extensions to SQLAlchemy',
python_requires='<4,>=3.7.1',
project_urls={"documentation": "https://mobilitydb-sqlalchemy.readthedocs.io/en/latest/", "homepage": "https://github.com/adonmo/mobilitydb-sqlalchemy", "repository": "https://github.com/adonmo/mobilitydb-sqlalchemy"},
author='B Krishna Chaitanya',
author_email='[email protected]',
license='MIT',
keywords='geo gis postgres mobilitydb sqlalchemy orm',
classifiers=['Development Status :: 3 - Alpha', 'Environment :: Plugins', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Topic :: Database :: Database Engines/Servers', 'Topic :: Scientific/Engineering :: GIS'],
packages=['mobilitydb_sqlalchemy', 'mobilitydb_sqlalchemy.types'],
package_dir={"": "."},
package_data={},
install_requires=['geoalchemy2==0.*,>=0.8.4', 'pandas==1.*,>=1.2.5', 'pymeos==0.*,>=0.1.1', 'shapely==1.*,>=1.7.0', 'sqlalchemy==1.*,>=1.3.18', 'urllib3==1.*,>=1.26.9'],
extras_require={"dev": ["black==22.*,>=22.3.0", "dephell==0.*,>=0.8.3", "fissix==20.*,>=20.5.1", "mistune==0.8.4", "pre-commit==2.*,>=2.6.0", "psycopg2==2.*,>=2.8.5", "pytest==6.*,>=6.0.1"], "docs": ["jinja2<3.1", "sphinx==2.*,>=2.3.1", "sphinx-rtd-theme==0.*,>=0.4.3", "tomlkit==0.*,>=0.5.8"], "movingpandas": ["movingpandas==0.*,>=0.4.0.rc1"]},
)