-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
30 lines (29 loc) · 1.14 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
from __future__ import absolute_import
from distutils.core import setup
from setuptools import find_packages
import versioneer
setup(
name="custom_inherit",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
package_dir={"": "src"},
packages=find_packages(where="src", exclude=["tests", "tests.*"]),
description="A Python package that provides customized docstring inheritance\
schemes between derived classes and their parents.",
author="@rsokl",
author_email="[email protected]",
url="https://github.com/rsokl/custom_inherit",
download_url="https://github.com/rsokl/custom_inherit/tarball/" + versioneer.get_version(),
license="MIT",
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
)