-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (30 loc) · 1 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
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name="abc_delegation",
version="0.3.0",
description="Tool for automated implementation of delegation pattern with ABC",
long_description=readme(),
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="decorator delegation ABC",
url="http://github.com/monomonedula/abc-delegation",
author="Vladyslav Halchenko",
author_email="[email protected]",
license="MIT",
packages=["abc_delegation"],
install_requires=["markdown"],
test_suite="nose.collector",
setup_requires=["pytest-runner"],
tests_require=["pytest"],
long_description_content_type='text/markdown',
)