-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (37 loc) · 1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
from setuptools import find_packages, setup
project = "almetro"
version = "1.0.7"
setup(
name=project,
version=version,
license="Apache License",
description="A python library to measure algorithms execution time and compare with its theoretical complexity",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Arnour Sabino",
author_email="[email protected]",
url="https://github.com/arnour/almetro",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
install_requires=[
"matplotlib==3.0.3",
"tabulate==0.8.3"
],
setup_requires=[
"nose>=1.3.7",
],
dependency_links=[
],
entry_points={
},
extras_require={
"test": [
"flake8>=3.7.7",
"flake8-print>=3.1.0",
"coverage>=4.5.3",
"PyHamcrest>=1.9.0",
],
},
)