-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
43 lines (41 loc) · 1.05 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
40
41
42
43
import setuptools
setuptools.setup(
name="Grank",
version="1.0.4",
author="LCTT",
author_email="[email protected]",
python_requires=">=3.4",
description="A Github Project Rank Command Line Tool",
long_description=open('readme.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/LCTT/Grank",
project_urls={
"Bug Tracker": "https://github.com/LCTT/Grank/issues",
"Documentation": "https://github.com/LCTT/Grank",
"Source Code": "https://github.com/LCTT/Grank",
},
license="GPLv3",
py_modules=['grank'],
packages=setuptools.find_packages(),
install_requires=[
'click',
'requests',
'pandas',
'numpy',
'matplotlib'
],
tests_require=[
'pytest',
'pytest-cov',
'pytest-pep8',
'pytest-flakes',
'pytest-mock'
],
entry_points="""
[console_scripts]
grank=grank.core:main
""",
classifiers=[
"Programming Language :: Python :: 3",
],
)