-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (43 loc) · 1.3 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
"""
Build and install the project: testipynb
"""
from setuptools import setup, find_packages
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Natural Language :: English",
]
with open("README.rst") as f:
LONG_DESCRIPTION = "".join(f.readlines())
setup(
name="testipynb",
version="0.0.3",
packages=find_packages(),
install_requires=[
"jupyter",
"nbconvert",
"nbformat",
"properties",
],
author="Lindsey Heagy",
author_email="[email protected]",
description="testipynb",
long_description=LONG_DESCRIPTION,
keywords="jupyter, testing",
url="http://github.com/lheagy/testipynb",
download_url="http://github.com/lheagy/testipynb",
classifiers=CLASSIFIERS,
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
license="MIT License",
use_2to3=False,
)