-
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.
Prepare 0.1.0 release, update README
- Loading branch information
Showing
2 changed files
with
4 additions
and
11 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 |
---|---|---|
|
@@ -32,17 +32,9 @@ Færeld requires python >= 3.6. | |
Via The Repo | ||
------------- | ||
|
||
To install Færeld from the repo, you can clone it and set up a clean environment | ||
with ``virtualenv``: :: | ||
To install Færeld:: | ||
|
||
git clone [email protected]:Autophagy/faereld.git | ||
cd faereld | ||
virtualenv .venv -p python3.6 | ||
source .venv/bin/activate | ||
|
||
Then, install the package: :: | ||
|
||
pip install --user -e . | ||
pip install --user faereld | ||
|
||
You can now run Færeld via ``faereld insert``. | ||
|
||
|
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,5 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from faereld import version | ||
from setuptools import setup | ||
|
||
try: | ||
|
@@ -13,6 +14,7 @@ | |
name="faereld", | ||
author="Mika Naylor (Autophagy)", | ||
author_email="[email protected]", | ||
version=version, | ||
description="Time tracking tool", | ||
long_description=readme, | ||
entry_points={"console_scripts": ["faereld = faereld.__main__:main"]}, | ||
|
@@ -35,5 +37,4 @@ | |
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
], | ||
use_scm_version=True, | ||
) |