forked from tonyfast/powersoften
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 981 Bytes
/
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
from os.path import join, dirname
import setuptools
def read(fname):
with open(join(dirname(__file__), fname)) as f:
return f.read()
setuptools.setup(
name="powersoften",
version="0.0.1",
author="Tony Fast",
author_email="[email protected]",
description="",
license="BSD-3-Clause",
keywords="IPython Magic Jupyter",
url="http://github.com/tonyfast/powersoften",
packages=setuptools.find_packages(),
classifiers=[
"Topic :: Utilities",
"Framework :: IPython",
"Natural Language :: English",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Testing",
],
install_requires=[],
include_package_data=True,
tests_require=[],
)