-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (40 loc) · 1.56 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
44
45
46
from setuptools import find_namespace_packages, setup
def _requires_from_file(filename):
with open(filename, encoding="utf-8") as f:
return f.read().splitlines()
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="deps",
packages=find_namespace_packages(include=["*"]),
version="0.2.3",
license="MIT",
description=("A terminal UI dashboard to view python dependencies across Github repositories."),
author="Kyle Harrison",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
download_url="https://pypi.org/project/deps/",
project_urls={
"Funding": "https://ko-fi.com/apoclyps",
"Say Thanks!": "https://twitter.com/apoclyps",
"Source": "https://github.com/apoclyps/deps",
"Tracker": "https://github.com/apoclyps/deps/issues",
},
keywords=["Deps"],
install_requires=_requires_from_file("requirements.txt"),
entry_points={"console_scripts": ["deps = deps.cli.main:main"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Unix",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Terminals",
],
)