This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Setup PIP - Remove Prefect from repo - Remove any leftover references of participation rewards --------- Co-authored-by: Haris Angelidakis <[email protected]>
- Loading branch information
1 parent
92e702d
commit 748478c
Showing
11 changed files
with
36 additions
and
282 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include logging.conf | ||
include requirements/prod.txt |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
subpackages = find_packages("src") | ||
packages = ["src"] + ["src." + p for p in subpackages] | ||
|
||
|
||
def read_requirements(filename): | ||
with open(filename, "r") as f: | ||
return [line.strip() for line in f.readlines() if line.strip()] | ||
|
||
|
||
setup( | ||
name="src", | ||
version="1.6.4", | ||
packages=packages, | ||
package_dir={"dune_sync": "src/dune_sync"}, | ||
include_package_data=True, | ||
data_files=[ | ||
( | ||
os.path.join( | ||
"lib", "python{0}.{1}".format(*os.sys.version_info[:2]), "site-packages" | ||
), | ||
["logging.conf"], | ||
) | ||
], | ||
install_requires=read_requirements("requirements/prod.txt"), | ||
) |
Empty file.
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
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