-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 919 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
from setuptools import setup, find_packages
VERSION = '0.6.2'
DESCRIPTION = 'Dictionary for your terminal'
with open('README.md', 'r+') as ld:
LONG_DESCRIPTION = ld.read()
# Setting up
setup(
name="larryc",
version=VERSION,
author="furtidev (Isfer Hossain)",
author_email="<megaphone@poto.cafe>",
description=DESCRIPTION,
url='https://github.com/furtidev/larryc',
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['rich', 'aiohttp'],
keywords=['python', 'dictionary', 'cli', 'app', 'foss'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)