This repository has been archived by the owner on May 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
082dd71
commit 7ff0b71
Showing
4 changed files
with
18 additions
and
11 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 |
---|---|---|
|
@@ -8,12 +8,15 @@ | |
From PyPI stable version: | ||
|
||
``` | ||
pip install numpy Cython | ||
pip install -e git+https://[email protected]/alercebroker/turbo-fats#egg=turbofats | ||
pip install lc-classifier | ||
``` | ||
|
||
For development: | ||
|
||
``` | ||
git clone https://github.com/alercebroker/lc_classifier.git | ||
python -m pip install -e . | ||
``` | ||
|
||
|
Empty file.
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 |
---|---|---|
|
@@ -16,7 +16,6 @@ tensorflow >=2.3 | |
pandas >=1.1 | ||
wget >=3.2 | ||
celerite2 >=0.1 | ||
|
||
-e git+https://[email protected]/alercebroker/turbo-fats#egg=turbofats | ||
-e git+https://git@github.com/alercebroker/mhps#egg=mhps | ||
-e git+https://git@github.com/alercebroker/P4J#egg=P4J | ||
mhps @ git+https://github.com/alercebroker/mhps | ||
P4J @ git+https://github.com/alercebroker/P4J |
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,17 +1,22 @@ | ||
from setuptools import setup | ||
from setuptools import setup, find_packages | ||
|
||
with open("requirements.txt") as f: | ||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
with open("requirements.txt", "r") as f: | ||
required_packages = f.readlines() | ||
|
||
required_packages = [r for r in required_packages if "-e" not in r] | ||
required_packages = [r for r in required_packages if "-e" not in r] | ||
|
||
setup( | ||
name="lc_classifier", | ||
version="2.0.0", | ||
description='ALeRCE light curve classifier', | ||
version="2.0.1", | ||
description="ALeRCE light curve classifier", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author="ALeRCE Team", | ||
author_email='[email protected]', | ||
packages=['lc_classifier'], | ||
author_email="[email protected]", | ||
packages=find_packages(), | ||
install_requires=required_packages, | ||
build_requires=required_packages | ||
build_requires=required_packages, | ||
) |