Skip to content

Commit 4116658

Browse files
committed
Fix readme for pypi
1 parent 23a416c commit 4116658

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ dist: xenial
22
sudo: false
33
language: python
44
python:
5-
- "3.7"
5+
- "3.6"
66
install: pip install tox-travis
77
script: tox

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE
2+
include READEME.md

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,10 @@ install: clean
1616

1717
dist:
1818
python setup.py sdist
19-
cp -f dist/almetro-0.1.0.tar.gz /Users/arnour.sabino/DockerVolumes/jupyter/almetro-0.1.1.tar.gz
19+
cp -f dist/almetro-0.1.0.tar.gz /Users/arnour.sabino/DockerVolumes/jupyter/almetro-0.1.1.tar.gz
20+
21+
release:
22+
@rm -fr dist/*
23+
python setup.py sdist bdist_wheel
24+
twine check dist/*
25+
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ chart = metro.chart()
4646
chart.show()
4747
```
4848

49-
![Chart Almetro n quadratic](images/chart_almetro_n_quadratic.png)
49+
![Chart Almetro n quadratic](https://raw.githubusercontent.com/arnour/almetro/master/images/chart_almetro_n_quadratic.png)
5050

5151
---
5252

@@ -69,4 +69,4 @@ chart = metro.chart()
6969
chart.show()
7070
```
7171

72-
![Chart Almetro lg n](images/chart_almetro_lg_n.png)
72+
![Chart Almetro lg n](https://github.com/arnour/almetro/blob/master/images/chart_almetro_lg_n.png?raw=true)

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
from setuptools import find_packages, setup
33

44
project = "almetro"
5-
version = "0.1.0"
5+
version = "1.0.4"
66

77
setup(
88
name=project,
99
version=version,
10+
license="Apache License",
1011
description="A python library to measure algorithms execution time and compare with its theoretical complexity",
12+
long_description=open('README.md').read(),
13+
long_description_content_type='text/markdown',
1114
author="Arnour Sabino",
1215
author_email="[email protected]",
1316
url="https://github.com/arnour/almetro",
@@ -25,7 +28,7 @@
2528
],
2629
entry_points={
2730
},
28-
extras_require = {
31+
extras_require={
2932
"test": [
3033
"flake8>=3.7.7",
3134
"flake8-print>=3.1.0",

0 commit comments

Comments
 (0)