-
Notifications
You must be signed in to change notification settings - Fork 23
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
9b0d694
commit 3ba4e8d
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__author__ = "Daniel W. Davies" | ||
__copyright__ = "Copyright Daniel W. Davies, Adam J. Jackson, Keith T. Butler (2019)" | ||
__version__ = "2.1" | ||
__version__ = "2.2" | ||
__maintainer__ = "Daniel W. Davies" | ||
__email__ = "[email protected]" | ||
__date__ = "Jun 10 2019" | ||
|
@@ -16,14 +16,14 @@ | |
if __name__ == "__main__": | ||
setup( | ||
name='SMACT', | ||
version='2.1', | ||
version='2.2', | ||
description='Semiconducting Materials by Analogy and Chemical Theory', | ||
long_description=open(os.path.join(module_dir, 'README.md')).read(), | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/WMD-group/SMACT', | ||
author='Daniel W. Davies', | ||
author_email='[email protected]', | ||
license='GNU General Public License (GPL) v3', | ||
license='MIT', | ||
packages=['smact', 'smact.tests'], | ||
package_data={ | ||
'smact': ['data/*.txt', 'data/*.csv', 'data/*.data', 'data/*.xlsx', 'data/*.json'] | ||
|