-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.21 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.21 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
import setuptools
import dotgit.info as info
with open('README.md', 'r') as readme:
long_description = readme.read()
setuptools.setup(
name = 'dotgit',
version = info.__version__,
author = info.__author__,
author_email = info.__author_email__,
description = 'A comprehensive solution to managing your dotfiles',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = info.__url__,
project_urls = {
'Documentation': 'https://dotgit.readthedocs.io',
},
license = info.__license__,
packages = ['dotgit', 'dotgit.plugins'],
entry_points = {
'console_scripts': ['dotgit=dotgit.__main__:main']
},
scripts = ['old/dotgit.sh'],
include_package_data = True,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Topic :: Utilities',
],
python_requires = '>=3.6',
)