-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 873 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 873 Bytes
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
from setuptools import setup, find_packages
from setuptools.command.install import install
from setuptools.command.develop import develop
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='data-curation',
version='2.0',
description='Data curation package. Optimized for pandas Dataframes',
license='GNU',
long_description=long_description,
author='Eric March Vila',
author_email='eric.march@upf.edu',
url='https://github.com/phi-grib/Data_curation',
download_url='https://github.com/phi-grib/Data_curation.git',
packages=find_packages(),
# If any package contains *.txt or *.rst files, include them:
# package_data={'': ['*.yaml', '*.yml']},
package_data={'curate': ['config.yaml','children/*.yaml']},
entry_points={
'console_scripts': ['datacur=curate.curate_src:main'],
}
)