-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.08 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
import pathlib
import setuptools
from dotfile_manager.version import __version__
PACKAGE_PATH = pathlib.Path(__file__).parent
LONG_DESCRIPTION = (PACKAGE_PATH / 'README.md').read_text()
setuptools.setup(
name='dotfile_manager',
version=__version__,
author='Lionel Gulich',
author_email='[email protected]',
url='https://github.com/lgulich/dotfile_manager',
description='A tool for managing dotfiles for linux and macos.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
install_requires=['pyyaml'],
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
],
license='Closed',
package_dir={'': 'dotfile_manager'},
packages=setuptools.find_packages('dotfile_manager'),
include_package_data=True,
package_data={'dotfile_manager': ['py.typed']},
scripts=[
'scripts/dotfile_manager',
],
python_requires='>=3.8',
)