forked from adriennesolange/clpipe_readthedocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 785 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
from setuptools import setup, find_packages
from clpipe.config.package import *
""" Configuration for building the clpipe package. Run build_clpipe.sh to build.
Metadata constants are kept in clpipe's source data, in config/package.py
"""
if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
url=REPO_URL,
author=AUTHORS,
author_email=AUTHOR_EMAIL,
license=LICENSE,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
include_package_data=True,
packages=find_packages(),
package_data=PACKAGE_DATA,
entry_points=ENTRY_POINTS,
zip_safe=False
)