forked from cmelab/flowerMD
-
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.
Merge pull request cmelab#89 from chrisjonesBSU/clean-env
Update `environment.yml` to use conda-forge versions of `grits` and `cmeutils`
- Loading branch information
Showing
3 changed files
with
20 additions
and
49 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
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 |
---|---|---|
@@ -1,12 +1,3 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
# Example copied with love from: | ||
# https://github.com/kennethreitz/setup.py/blob/master/setup.py | ||
|
||
# Note: To use the 'upload' functionality of this file, you must: | ||
# $ pip install twine | ||
|
||
import os | ||
import sys | ||
from shutil import rmtree | ||
|
@@ -16,7 +7,7 @@ | |
# Package meta-data. | ||
NAME = "flowermd" | ||
DESCRIPTION = ( | ||
"Package making it easier to build and simulate polymers in Hoomd-Blue" | ||
"Package making it easier to build and simulate polymers in Hoomd-Blue." | ||
) | ||
URL = "https://github.com/cmelab/flowerMD" | ||
EMAIL = "[email protected]" | ||
|
@@ -81,7 +72,6 @@ def run(self): | |
sys.exit() | ||
|
||
|
||
# Where the magic happens: | ||
setup( | ||
name=NAME, | ||
version=about["__version__"], | ||
|
@@ -96,11 +86,6 @@ def run(self): | |
"docs", | ||
) | ||
), | ||
# If your package is a single module, use this instead of 'packages': | ||
# py_modules=['mypackage'], | ||
# entry_points={ | ||
# 'console_scripts': ['mycli=mymodule:cli'], | ||
# }, | ||
package_data={ | ||
"flowermd": [ | ||
"modules/*", | ||
|
@@ -111,10 +96,8 @@ def run(self): | |
}, | ||
install_requires=REQUIRED, | ||
include_package_data=True, | ||
license="MIT", | ||
license="GPLv3", | ||
classifiers=[ | ||
# Trove classifiers | ||
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
|