-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup: more info and typo fix via testpypi (#6)
- Loading branch information
Showing
2 changed files
with
21 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,7 @@ | |
*.grb | ||
*.nc4 | ||
*ipynb_checkpoints* | ||
build/ | ||
dist/ | ||
src/*.egg-info/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,31 @@ | ||
############################################################ | ||
# Program is part of PyAPS # | ||
# Copyright 2012, by the California Institute of Technology# | ||
# Contact: [email protected] # | ||
# Modified by A. Benoit and R. Jolivet 2019 # | ||
# Ecole Normale Superieure, Paris # | ||
# Contact: [email protected] # | ||
############################################################ | ||
# Author: Zhang Yunjun, Panji Brotoisworo, Jan 2021 | ||
|
||
# always prefer setuptools over distutils | ||
from setuptools import setup, find_packages | ||
|
||
|
||
# Grab from README file: long_description | ||
with open("README.md", "r") as f: | ||
long_description = f.read() | ||
|
||
|
||
setup( | ||
name='pyaps3', | ||
version='0.3.0', | ||
description="Python based Atmospheric Phase Screen Estimation", | ||
url="https://github.com/insarlab/pyaps3", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
|
||
author="Romain Jolivet, Angelique Benoit", | ||
author_email="[email protected]", | ||
|
||
url="https://github.com/insarlab/PyAPS", | ||
project_urls={ | ||
"Bug Reports": "https://github.com/insarlab/PyAPS/issues", | ||
"Documentation": "https://github.com/insarlab/PyAPS/tree/main/docs", | ||
"Source": "https://github.com/insarlab/PyAPS", | ||
}, | ||
|
||
# package discovery | ||
packages=find_packages("src"), # include all packages under src | ||
package_dir={"": "src"}, # tell distutils packages are under src | ||
|
@@ -35,5 +43,5 @@ | |
|
||
# data files | ||
include_package_data=True, | ||
package_data={"pysolid": ["*.cfg"]}, | ||
package_data={"pyaps3": ["*.cfg"]}, | ||
) |