forked from PyMap/ssyt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 938 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
from setuptools import setup, find_packages
import pathlib
current_dir = pathlib.Path(__file__).parent.resolve()
long_description = (current_dir / 'README.md').read_text(encoding='utf-8')
setup(
name="ssyt",
version="0.1dev0",
description='Systema Sociedad y Territorio',
long_description=long_description,
author='CEEU - UNSAM',
author_email='[email protected]',
url='https://github.com/PyMap/ssyt',
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
#'Programming Language :: Python :: 3.10'
],
packages=find_packages(exclude=['*.tests']),
install_requires=[
#'google-cloud-bigquery >= 1.9.0',
#'google-cloud-bigquery-storage >= 2.9.1',
#'google-cloud-bigquery[bqstorage,pandas]',
'numpy >= 1.22.2',
'pandas >= 1.4.1',
'streamlit == 1.1.0',
'matplotlib >= 3.4.3',
]
)