-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setting up requirements for package publication
- Loading branch information
1 parent
40f6b74
commit 3799e30
Showing
10 changed files
with
35 additions
and
48 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
import setuptools | ||
from distutils.core import setup | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="sdo_hmi_rvs", # This is the name of the package | ||
version="0.0.1", # The initial release version | ||
author="Tamar Ervin", # Full name of the author | ||
description="Python package to independently derive 'sun-as-a-star' radial velocity variations.", | ||
long_description=long_description, # Long description read from the the readme file | ||
long_description_content_type="text/markdown", | ||
packages=setuptools.find_packages(), # List of all python modules to be installed | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
], # Information to filter the project on PyPi website | ||
python_requires='>=3.8', # Minimum version requirement of the package | ||
py_modules=["sdo_hmi_rvs"], # Name of the python package | ||
package_dir={'':'sdo_hmi_rvs/tools'}, # Directory of the source code of the package | ||
install_requires=[] # Install other dependencies if any | ||
setup( | ||
name = 'sdo_hmi_rvs', | ||
packages = ['sdo_hmi_rvs'], | ||
version = '0.0.1', # Ideally should be same as your GitHub release tag varsion | ||
description = "Python package to independently derive 'sun-as-a-star' radial velocity variations.", | ||
author = 'Tamar Ervin', | ||
author_email = '[email protected]', | ||
url = 'github package source url', | ||
download_url = 'download link you saved', | ||
keywords = ['tag1', 'tag2'], | ||
classifiers = [], | ||
) |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="sdo_hmi_rvs", # This is the name of the package | ||
version="0.0.1", # The initial release version | ||
author="Tamar Ervin", # Full name of the author | ||
description="Python package to independently derive 'sun-as-a-star' radial velocity variations.", | ||
long_description=long_description, # Long description read from the the readme file | ||
long_description_content_type="text/markdown", | ||
packages=setuptools.find_packages(), # List of all python modules to be installed | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
], # Information to filter the project on PyPi website | ||
python_requires='>=3.8', # Minimum version requirement of the package | ||
py_modules=["sdo_hmi_rvs"], # Name of the python package | ||
package_dir={'':'sdo_hmi_rvs/src'}, # Directory of the source code of the package | ||
install_requires=[] # Install other dependencies if any | ||
) |