Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Register on pypi, more badges #81

Merged
merged 4 commits into from
Sep 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
dist/
mir_flare.egg-info/
flare.egg-info/
build/
tags
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/mir-group/flare.svg?branch=master)](https://travis-ci.org/mir-group/flare) [![documentation](https://readthedocs.org/projects/flare/badge/?version=latest)](https://readthedocs.org/projects/flare) [![codecov](https://codecov.io/gh/mir-group/flare/branch/master/graph/badge.svg)](https://codecov.io/gh/mir-group/flare)
[![Build Status](https://travis-ci.org/mir-group/flare.svg?branch=master)](https://travis-ci.org/mir-group/flare) [![documentation](https://readthedocs.org/projects/flare/badge/?version=latest)](https://readthedocs.org/projects/flare) [![pypi](https://img.shields.io/pypi/v/mir-flare)](https://pypi.org/project/mir-flare/) [![activity](https://img.shields.io/github/commit-activity/m/mir-group/flare)](https://github.com/mir-group/flare/commits/master) [![codecov](https://codecov.io/gh/mir-group/flare/branch/master/graph/badge.svg)](https://codecov.io/gh/mir-group/flare)

# FLARE: Fast Learning of Atomistic Rare Events

Expand All @@ -13,7 +13,7 @@ FLARE is an open-source Python package for creating fast and accurate atomistic
FLARE can be installed in two different ways.
1. Download and install automatically:
```
pip install git+https://github.com/mir-group/flare.git
pip install mir-flare
```
2. Download this repository and install (required for unit tests):
```
Expand Down
15 changes: 9 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,13 @@
with open("README.md", "r") as fh:
long_description = fh.read()

with open("LICENSE", "r") as fh:
license = fh.read()

with open("requirements.txt", "r") as fh:
dependencies = fh.readlines()

setuptools.setup(
name="flare",
name="mir-flare",
packages=setuptools.find_packages(exclude=["tests"]),
version="0.0.1",
version="0.0.3",
author="Materials Intelligence Research",
author_email="mir@g.harvard.edu",
description="Fast Learning of Atomistic Rare Events",
Expand All @@ -22,5 +19,11 @@
url="https://github.com/mir-group/flare",
python_requires=">=3.6",
install_requires=dependencies,
license=license,
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Development Status :: 4 - Beta",
],
)