-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 865 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 865 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
VERSION = '1.1'
DOWNLOAD_URL = ('https://github.com/harsimrans/word-treasure/archive/'
'{}.zip'.format(VERSION))
REQUIRES = []
PACKAGES = find_packages(exclude=["*.tests", "*.tests.*", "tests.*",
"tests"])
add_keywords = dict(
entry_points={
'console_scripts': ['wt = word_treasure.word_treasure:main'],
}, )
setup(
name='word_treasure',
version=VERSION,
license='GNU GPL v3.0',
author='harsimran singh',
author_email='harsimransingh032@gmail.com',
download_url=DOWNLOAD_URL,
install_requires=REQUIRES,
packages=PACKAGES,
include_package_data=True,
zip_safe=False,
url='https://github.com/harsimrans/word-treasure',
description='Simple tool to look up words with single command',
**add_keywords
)