This repository has been archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
60 lines (55 loc) · 1.57 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
# -*- coding: utf-8 -*-
"""
Project : CoCoA
Date : april/november 2020
Authors : Olivier Dadoun, Julien Browaeys, Tristan Beau
Copyright © CoCoa-team-17
License: See joint LICENSE file
About : mandatory setup file
"""
from setuptools import setup, find_packages
pkg_vars = {}
with open("cocoa/_version.py") as fp:
exec(fp.read(), pkg_vars)
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='CoCoA',
url='https://github.com/tjbtjbtjb/CoCoA',
version=pkg_vars['__version__'],
author=pkg_vars['__author__'],
author_email=pkg_vars['__email__'],
# Needed to actually package something
packages=['cocoa'],
# Needed for dependencies
install_requires=[ \
'altair',\
'bokeh',\
'branca',\
#'collections',\ std
#'copy',\ std
'datetime',\
'folium',\
'geopandas',\
'geopy',\
#'itertools',\ std
#'json',\ std
#'math',\ std
'matplotlib',\
'numpy',\
'pandas',\
'pycountry',\
'pycountry_convert',\
'pyproj',\
#'random',\ std
'requests',\
'scipy',\
'shapely',\
#'sys',\ std
#'warnings',\ std
],
# The license can be anything you like
license='MIT',
description='CoCoA stands for COvid COlab Analysis project, which is an open source project initially designed to run in the Google colab environment.',
# We will also need a readme eventually (there will be a warning)
long_description=open('README.md').read(),
)