File tree Expand file tree Collapse file tree 5 files changed +17
-6
lines changed Expand file tree Collapse file tree 5 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ dist: xenial
2
2
sudo : false
3
3
language : python
4
4
python :
5
- - " 3.7 "
5
+ - " 3.6 "
6
6
install : pip install tox-travis
7
7
script : tox
Original file line number Diff line number Diff line change
1
+ include LICENSE
2
+ include READEME.md
Original file line number Diff line number Diff line change @@ -16,4 +16,10 @@ install: clean
16
16
17
17
dist :
18
18
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/*
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ chart = metro.chart()
46
46
chart.show()
47
47
```
48
48
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)
50
50
51
51
---
52
52
@@ -69,4 +69,4 @@ chart = metro.chart()
69
69
chart.show()
70
70
```
71
71
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 )
Original file line number Diff line number Diff line change 2
2
from setuptools import find_packages , setup
3
3
4
4
project = "almetro"
5
- version = "0. 1.0"
5
+ version = "1.0.4 "
6
6
7
7
setup (
8
8
name = project ,
9
9
version = version ,
10
+ license = "Apache License" ,
10
11
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' ,
11
14
author = "Arnour Sabino" ,
12
15
13
16
url = "https://github.com/arnour/almetro" ,
25
28
],
26
29
entry_points = {
27
30
},
28
- extras_require = {
31
+ extras_require = {
29
32
"test" : [
30
33
"flake8>=3.7.7" ,
31
34
"flake8-print>=3.1.0" ,
You can’t perform that action at this time.
0 commit comments