-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
45 lines (39 loc) · 1.05 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
import os
from setuptools import setup
def readme() -> str:
"""Utility function to read the README.md.
Used for the `long_description`. It's nice, because now
1) we have a top level README file and
2) it's easier to type in the README file than to put a raw string in below.
Args:
nothing
Returns:
String of README.md file.
"""
return open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setup(
name='ramp',
version='0.1.0',
author='Carolyn Johnston',
author_email='carolyn.johnston@dev.global',
description='Replicable AI for Microplanning',
python_requires='>=3',
license='',
url='',
packages=[
'ramp',
'ramp.data_mgmt',
'ramp.training',
'ramp.utils',
],
package_dir={"":"."},
long_description=readme(),
long_description_content_type="text/markdown",
install_requires=[
'gdal>=3.0.2',
'geopandas==0.10.2',
'rasterio==1.2.10',
'scikit-fmm==2022.08.15',
'tqdm==4.62.3',
]
)