forked from your-tools/tsrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 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
39
40
41
42
43
44
45
46
import sys
from setuptools import setup, find_packages
if sys.version_info.major < 3:
sys.exit("Error: Please upgrade to Python3")
def get_long_description():
with open("README.rst") as fp:
return fp.read()
setup(name="tsrc",
version="0.3.1",
description="Manage multiple repositories",
long_description=get_long_description(),
url="https://github.com/TankerApp/tsrc",
author="Kontrol SAS",
packages=find_packages(),
include_package_data=True,
install_requires=[
"attrs",
"colored_traceback",
"colorama",
"path.py",
"python-cli-ui",
"pyparsing",
"requests",
"ruamel.yaml",
"schema",
"tabulate",
"unidecode",
"xdg",
],
classifiers=[
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
entry_points={
"console_scripts": [
"tsrc = tsrc.cli.main:main",
]
}
)