-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (28 loc) · 835 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
30
31
32
import setuptools
import sys
import os
from pydoctest.version import VERSION
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pydoctest",
version=VERSION,
author="Jeppe Rask",
author_email="[email protected]",
description="Test if doctype types match signatures",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jepperaskdk/pydoctest",
project_urls={
"Bug Tracker": "https://github.com/jepperaskdk/pydoctest/issues",
},
package_dir={"": "."},
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'pydoctest=pydoctest.main:main'
]
},
license_files=('LICENSE',),
python_requires=">=3.6",
)