-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes according to @giovannipizzi and @ltalirz
Changed to relative links for files in repo. Updated reasoning point behind leaving out export version 0.1 file. Added `MANIFEST.in` to get all `*.aiida` files in the dist package. Changed the name to `aiida-export-migration-tests`. Note: Adding `MANIFEST.in` is not enough, one must also add `include_package_data=True` in the setup function in `setup.py`
- Loading branch information
Showing
14 changed files
with
18 additions
and
8 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,2 @@ | ||
include aiida-export-migration-tests/fixtures/*.aiida | ||
include .qm/*.py |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -3,10 +3,18 @@ | |
from __future__ import absolute_import | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="aiida-export_migration-testing", | ||
name="aiida-export-migration-tests", | ||
version="0.1.0", | ||
author="The AiiDA team", | ||
author_email="[email protected]", | ||
description="Export migrations tests for AiiDA", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/aiidateam/aiida-export-migration-tests", | ||
packages=find_packages(), | ||
license="MIT Licence", | ||
author="The AiiDA team", | ||
install_requires=["aiida-core>=1.0.0"]) | ||
include_package_data=True) |