-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (32 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (32 loc) · 1.16 KB
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
import codecs
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
LONG_DESCRIPTION = "\n" + fh.read()
VERSION = "3.1.3"
DESCRIPTION = "Creates permanent aliases"
# LONG_DESCRIPTION = "Creates permanent aliases so you don't have to open your shell config file"
setup(
name="quickalias",
version=VERSION,
author="Decator (Aidan Neal) & dCaples",
author_email="decator.c@proton.me",
url="https://github.com/dCaples/quickalias",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
install_requires=[],
py_modules=['quickalias'],
license='GPLv3',
entry_points = {'console_scripts': ['quickalias = quickalias:main']},
keywords=["python", "alias", "shell",
"config", "scriptable", "commandline"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: End Users/Desktop",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
]
)