-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (57 loc) · 1.5 KB
/
setup.py
File metadata and controls
61 lines (57 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, convert_path
main_ns = {}
with open(convert_path("herethere/herethere_version.py")) as ver_file:
exec(ver_file.read(), main_ns)
version = main_ns["__version__"]
with open(convert_path("README.rst")) as readme_file:
long_description = readme_file.read()
setup(
name="herethere",
version=main_ns["__version__"],
packages=[
"herethere",
"herethere.everywhere",
"herethere.here",
"herethere.magic",
"herethere.there",
"herethere.there.commands",
],
description="herethere",
long_description=long_description,
long_description_content_type="text/x-rst",
author="b3b",
author_email="ash.b3b@gmail.com",
install_requires=[
"asyncssh",
"click",
"python-dotenv",
],
extras_require={
"magic": [
"ipython",
"ipywidgets",
"nest_asyncio",
],
"dev": [
"black",
"codecov",
"docutils",
"flake8",
"pylint",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-mock",
],
},
url="https://github.com/b3b/herethere",
# https://pypi.org/classifiers/
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords="SSH magic ipython jupyter",
license="MIT",
zip_safe=False,
)