-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #228 from aerospaceresearch/setup
Setup
- Loading branch information
Showing
3 changed files
with
13 additions
and
12 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
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
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 |
---|---|---|
|
@@ -7,19 +7,19 @@ | |
requirements = fh.readlines() | ||
|
||
setup( | ||
name="orbitdeterminator", | ||
packages=find_packages(), | ||
version="1.0", | ||
license="MIT", | ||
author="aerospaceresearch.net community", | ||
author_email="[email protected]", | ||
url="http://orbit-determinator.readthedocs.io/en/latest/", | ||
description="__orbitdeterminator__ is a package written in python3 for determining orbit of satellites based " \ | ||
name="orbitdeterminator", | ||
packages=find_packages(), | ||
version="1.0", | ||
license="MIT", | ||
author="aerospaceresearch.net community", | ||
author_email="[email protected]", | ||
url="http://orbit-determinator.readthedocs.io/en/latest/", | ||
description="__orbitdeterminator__ is a package written in python3 for determining orbit of satellites based " \ | ||
"on positional data. Various filtering and determination algorithms are available for satellite " \ | ||
"operators to choose from. ", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
install_requires=[req for req in requirements if req[:2] != "# "and req[:4] != "http"], | ||
install_requires=[req for req in requirements if req[:2] != "# "and req[:4] != "http"], | ||
dependency_links=[req for req in requirements if req[:4] != "http"], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
|