forked from nasirhjafri/libyear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 886 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name="libyear",
version="0.2.0",
description="A simple measure of software dependency freshness.",
long_description=open("README.md").read(),
author="nasirhjafri",
url="https://github.com/nasirhjafri/libyear",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
packages=["libyear"],
py_modules=["libyear"],
scripts=["libyear/libyear"],
dependency_links=[],
install_requires=[
"requests>=2.0.0",
"prettytable>=0.7.2",
"python-dateutil>=2.7.0",
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
)