forked from thisisparker/xword-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (28 loc) · 1.05 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt'), encoding="utf-8") as f:
reqs = f.read().split()
with open(os.path.join(here, 'README.md'), encoding="utf-8") as f:
readme = f.read()
with open(os.path.join(here, 'xword_dl', 'version')) as f:
version = f.read().strip()
setup(name='xword_dl',
version=version,
description='a download tool for online crossword puzzles',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/thisisparker/xword-dl',
author='Parker Higgins',
author_email='parker@parkerhiggins.net',
packages=find_packages(),
package_data={'xword_dl':['version']},
python_requires='>=3.7',
install_requires=reqs,
entry_points={
'console_scripts': [
'xword-dl=xword_dl.xword_dl:main',
],
},
license='License :: OSI Approved :: MIT License',
)