-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
52 lines (37 loc) · 1.46 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
from os import path
# Get the long description from the README file
with open(path.join('.', 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
author = "tryexceptpass",
author_email = "[email protected]",
name = "korv",
version = "0.2.1",
description = "SSH API Framework",
long_description=long_description,
long_description_content_type='text/markdown',
url = "https://github.com/tryexceptpass/korv",
packages = find_packages(),
install_requires = ['asyncssh'],
python_requires='>=3.6',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
license = "MIT",
classifiers = [ 'License :: OSI Approved :: MIT License',
'Topic :: Communications',
'Topic :: Internet',
'Framework :: AsyncIO',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Development Status :: 4 - Beta',
],
keywords = 'ssh api framework',
project_urls={
'Gitter Chat': 'https://gitter.im/try-except-pass/korv',
'Say Thanks!': 'https://saythanks.io/to/tryexceptpass',
'Source': 'https://github.com/tryexceptpass/korv',
# 'Documentation': 'http://korv.readthedocs.io/en/latest/',
},
)