-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 922 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import agd_tools
setup(
name="agd_tools",
version=agd_tools.__version__,
author="AGD Team",
description="Useful functions for datascience.",
include_package_data=True,
long_description=open('README.md').read(),
packages=find_packages(),
url="https://github.com/SGMAP-AGD/Tools",
package_data={'agd_tools': ['config.ini.example']},
classifiers=['Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3'],
install_requires=['numpy',
'scipy',
'SQLAlchemy',
'psycopg2',
'pandas',
'paramiko',
'scikit-learn >= 0.17',
'geographiclib',
'shapely',
'IPython',
]
)