-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.29 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
install_requires = fh.read().splitlines()
with open("VERSION", "r") as fh:
install_requires = fh.readline().strip()
GITHUB_URL = "https://github.com/jigarius/clibato"
AUTHOR_URL = "https://jigarius.com/"
setuptools.setup(
name="clibato",
version='1.0.1',
author="Jigar Mehta",
author_email="hello@jigarius.com",
description="A tool to backup/restore simple files, e.g. dot files.",
long_description=long_description,
long_description_content_type="text/markdown",
license='GNU LGPL v2.1',
url=GITHUB_URL,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
],
keywords='cli backup restore dotfile utility',
project_urls={
"Documentation": GITHUB_URL + '#readme',
"Author": AUTHOR_URL,
"Tracker": "https://github.com/jigarius/clibato/issues"
},
packages=setuptools.find_packages(),
python_requires='>=3.6',
install_requires=install_requires,
entry_points={
'console_scripts': ['clibato=clibato.__main__:main'],
}
)