forked from pypi/stdlib-list
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (22 loc) · 832 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
import os
from setuptools import find_packages, setup
import versioneer
rootpath = os.path.dirname(os.path.abspath(__file__))
def read(*parts):
return open(os.path.join(rootpath, *parts), "r").read()
setup(
name="stdlib-list",
license="MIT",
author="Jack Maney",
author_email="[email protected]",
url="https://github.com/jackmaney/python-stdlib-list",
version=versioneer.get_version(),
install_requires=["functools32;python_version<'3.2'"],
extras_require={"develop": ["sphinx"]},
description="A list of Python Standard Libraries (2.6-7, 3.2-9).",
long_description="{}".format(read("README.md")),
long_description_content_type="text/markdown",
include_package_data=True,
packages=find_packages(exclude=["tests", "tests.*"]),
cmdclass=versioneer.get_cmdclass(),
)