-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 983 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
import os
requirements = ['numpy']
#with open('requirements.txt', 'r') as f:
# lines = [x.strip() for x in f if 0 < len(x.strip())]
# requirements = [x for x in lines if x[0].isalpha()]
os.system('conda env create --file=odc_env.yml')
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='odc_tools',
url='https://github.com/ocean-data-challenges/ODC_tools',
author='Sammy Metref and Maxime Ballarotta',
author_email='[email protected]',
# Needed to actually package something
packages=['odc_tools'],
# Needed for dependencies
install_requires=requirements,
# *strongly* suggested for sharing
version='0.1',
# The license can be anything you like
license='MIT',
description='Python package of the tools used in the ocean data challenges',
# We will also need a readme eventually (there will be a warning)
# long_description=open('README.txt').read(),
)