-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 813 Bytes
/
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
""" RPM build setup """
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
REQUIREMENTS = (HERE / "requirements.txt").read_text().splitlines()
VERSION = (HERE / "VERSION").read_text()
setup(
name = 'synct',
version = VERSION,
description = 'Transform data from source to Google or Excel spreadsheet',
long_description = README,
long_description_content_type = 'text/markdown',
url = 'https://github.com/ari3s/synct',
author = 'Jan Beran',
author_email = 'ari3s.git@gmail.com',
license = 'GPL-3.0-or-later',
zip_safe = False,
entry_points={
'console_scripts': ['synct = synct.synct:main']
},
packages = find_packages(),
install_requires = REQUIREMENTS
)