This repository has been archived by the owner on Jun 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (50 loc) · 1.62 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
47
48
49
50
51
52
53
54
"""Packaging settings."""
from codecs import open
from os.path import abspath, dirname
from setuptools import find_packages, setup
from paci import __version__
this_dir = abspath(dirname(__file__))
setup(
name="paci",
version=__version__,
description="Your friendly, lightweight and flexible package manager.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/tradebyte/paci",
download_url="https://github.com/tradebyte/paci/archive/{}.tar.gz".format(__version__),
author="Niklas Heer",
author_email="[email protected]",
license='MIT license',
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Software Distribution",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"
],
keywords=["cli", "package-manager", "install", "linux", "ubuntu", "bash"],
packages=find_packages(exclude=["docs", "tests*"]),
install_requires=[
"docopt",
"better_exceptions",
"ruamel.yaml",
"json-traverse",
"clint",
"requests",
"jinja2",
"tinydb",
"tabulate",
"fuzzywuzzy",
"python-Levenshtein"
],
entry_points={
"console_scripts": [
"paci=paci.cli:main",
],
}
)