-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1013 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
32
33
34
35
36
37
"""
Owner: battleoverflow (https://github.com/battleoverflow)
Project: Suki
License: BSD 2-Clause
"""
import setuptools
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name = "suki",
version = "0.0.7",
author = "battleoverflow",
description = "Suki is a Python symbolic link package manager created to make Python package management similar to node_modules.",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/battleoverflow/suki",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages = [
"suki"
],
install_requires=[
"argparse",
"faye"
],
scripts=["suki/suki.py"],
entry_points={
'console_scripts': ["suki=suki.suki:Suki.main"]
},
python_requires = ">=3.6"
)