-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
42 lines (34 loc) · 1.15 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
version = {}
with open("sshkernel/version.py") as f:
exec(f.read(), version)
# later on we use: version['__version__']
def _requirements():
return [name for name in open("requirements.txt").readlines()]
setup(
name="sshkernel",
version=version["__version__"],
author="UENO, Masaru",
author_email="[email protected]",
description="SSH Kernel",
extras_require={"dev": ["pytest>=3", "pytest-watch"]},
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=_requirements(),
license='BSD 3-clause "New" or "Revised License"',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nii-cloud-operation/sshkernel",
packages=["sshkernel", "sshkernel.magics"],
classifiers=[
"Framework :: IPython",
"Framework :: Jupyter",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: System :: Shells",
],
)