-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 946 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 946 Bytes
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
from setuptools import setup, find_packages
from scd.constants import VERSION
import sys
if sys.version_info < (3, 6):
sys.exit("SCD requires python 3.6 or higher")
with open("README.md", 'r') as f:
long_description = f.read()
requirements = [i.strip() for i in open("requirements.txt").readlines()]
setup(
name='scd',
version=VERSION,
license='MIT',
description='A program to deploy your shell configuration to remote hosts.',
long_description=long_description,
author='Tim Lindeberg',
author_email='tim.lindeberg@gmail.com',
url='https://github.com/timlindeberg/ShellConfigDeployer',
packages=find_packages(),
install_requires=requirements,
entry_points={'console_scripts': ['scd=scd.main:main']},
package_data={'': ['README.md']},
data_files=[('.', ['README.md'])],
include_package_data=True,
platforms=['linux', 'macos'],
keywords='shell configuration deployment'
)