-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.15 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.15 KB
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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='ObjectDelegator',
version='1.1',
packages=['ObjectDelegator'],
url='https://github.com/YairMZ/ObjectDelegator',
license='GNU General Public License v3.0',
author='Yair Mazal',
author_email='mazaly@post.bgu.ac.il',
description='This minimal yet powerful library allows delegation of an objects: methods, properties, and his own '
'member objects, to an object who owns it. Recursive delegation is also supported.'
'Use the simple API to handle delegations.',
download_url='https://github.com/YairMZ/ObjectDelegator/archive/v1.1.tar.gz',
keywords=['OOP', 'delegation', 'composition'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Object Brokering",
],
python_requires='>=3.8',
long_description=long_description,
long_description_content_type='text/markdown',
)