-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1015 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
30
31
32
33
34
35
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
with open("requirements.txt", "r", encoding="utf-8") as requirements_in:
requirements = requirements_in.read().splitlines()
setup(
name='sameWidther',
version='0.0.5',
description='Gets random words of the same width for given font',
keywords="font typography graphicdesign specimen width word",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jansindl3r/sameWidther',
author='Jan Šindler',
author_email='jansindl3r@gmail.com',
license='MIT',
package_dir={"": "Lib"},
packages=[".", ".databases"],
package_data={
".databases": ["*.json"],
},
entry_points={
"console_scripts": [
"sameWidther=sameWidther:main",
]
},
zip_safe=False,
python_requires='>=3.6',
install_requires=requirements
)