forked from mitchweaver/Discline
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (46 loc) · 1.45 KB
/
setup.py
File metadata and controls
51 lines (46 loc) · 1.45 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
requirements = [
"asyncio",
"blessings",
"pyyaml",
"mistletoe==0.6.2",
"discord.py==1.0.0a"
]
setup(
name='dline',
version='2.4.1',
description='A feature-rich terminal discord client',
long_description=readme,
long_description_content_type='text/markdown',
author='Nat Osaka',
author_email='natthetupper@gmail.com',
url='https://github.com/NatTupper/dline',
license='gpl-3.0',
keywords=['discord', 'discord.py', 'chat client', 'ncurses'],
packages=[
'dline', 'dline.client', 'dline.commands',
'dline.input', 'dline.ui', 'dline.utils'
],
install_requires=requirements,
dependency_links=['https://github.com/Rapptz/discord.py/archive/rewrite.zip#egg=discord.py-1.0.0a'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Communications :: Chat'
],
entry_points={
'console_scripts': ['dline=dline.__main__:main']
},
include_package_data=True,
zip_safe=False
)