-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
38 lines (34 loc) · 1.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
#!/usr/bin/env python
from os import path
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="libyear",
version="0.2.1",
description="A simple measure of software dependency freshness.",
long_description=long_description,
long_description_content_type='text/markdown',
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",
"License :: OSI Approved :: MIT License",
],
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"],
)