-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (38 loc) · 1.27 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
from setuptools import find_packages, setup
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("HISTORY.rst") as history_file:
history = history_file.read()
setup(
name="watchmagic",
version="0.1.1",
author="Gunnar Voet",
author_email="gvoet@ucsd.edu",
url="https://github.com/gunnarvoet/watchmagic",
license="GNU GPL v3",
# Description
description="Add watchdog to IPython cells",
long_description=f"{readme}\n\n{history}",
long_description_content_type="text/x-rst",
# Requirements
python_requires=">=3.0",
install_requires=[
"watchdog",
"IPython",
],
# Packaging
packages=find_packages(include=["watchmagic"], exclude=["*.tests"]),
zip_safe=False,
platforms=["any"], # or more specific, e.g. "win32", "cygwin", "osx"
# Metadata
project_urls={"Documentation": "https://github.com/gunnarvoet/watchmagic"},
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: IPython",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
],
)