-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 910 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='leo-gmi',
version='1.2.1',
scripts=['leo'],
author='shantaram',
author_email='me@shantaram.xyz',
license='MIT',
description='A terminal-based client for the Gemini protocol.',
long_description=long_description,
url="https://github.com/xyzshantaram/leo",
project_urls={
"Bug Tracker": "https://github.com/xyzshantaram/leo",
"README": "https://github.com/xyzshantaram/leo#readme"
},
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Development Status :: 4 - Beta"
],
keywords='leo gemini gopher http fediverse internet protocol www client',
)