-
Notifications
You must be signed in to change notification settings - Fork 4
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 #7 from ataitler/packaging
Packaging
- Loading branch information
Showing
8 changed files
with
38 additions
and
79 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
recursive-include rddlrepository/Archive *.rddl |
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
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 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 |
---|---|---|
|
@@ -13,10 +13,30 @@ | |
# along with rddlrepository. If not, see <https://opensource.org/licenses/MIT>. | ||
|
||
from setuptools import setup, find_packages | ||
import os | ||
import glob | ||
|
||
|
||
# def package_files(directory): | ||
# paths = [] | ||
# for (path, directories, filenames) in os.walk(directory): | ||
# for filename in filenames: | ||
# paths.append(os.path.join('..', path, filename)) | ||
# return paths | ||
# | ||
# data_files = package_files('Archive') | ||
# print(data_files) | ||
# data_files = [] | ||
# directories = glob.glob('Archive/') | ||
# for directory in directories: | ||
# files = glob.glob(directory+'*') | ||
# data_files.append((directory, files)) | ||
# print(files) | ||
|
||
|
||
setup( | ||
name='rddlrepository', | ||
version='0.1', | ||
version='0.20', | ||
author="Ayal Taitler, Scott Sanner, Michael Gimelfarb", | ||
author_email="[email protected], [email protected], [email protected]", | ||
description="Home for all things RDDL", | ||
|
@@ -26,7 +46,6 @@ | |
install_requires=['pillow>=9.2.0', 'matplotlib>=3.5.0', 'numpy>=1.22'], | ||
python_requires=">=3.8", | ||
include_package_data=True, | ||
package_data={'': [ ]}, | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Science/Research", | ||
|