-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 776 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='instancemethod',
packages=['src'],
version='2.0',
license="MIT",
description='Restrict method calls to instances of the owner class.',
author='Braden Toone',
author_email='braden@toonetown.com',
url='https://github.com/Braden2n/InstanceMethod',
keywords=["instance", "method", "restrict", "class", "call"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
],
)