|
1 | | -from setuptools import find_packages |
2 | | -from setuptools import setup |
| 1 | +import setuptools |
3 | 2 |
|
4 | | - |
5 | | -with open("README.md", encoding="utf-8") as readme_file: |
6 | | - readme = readme_file.read() |
7 | | - |
8 | | -install_requirements = ["click", "markdown", "requests"] |
9 | | - |
10 | | -setup_requirements = ["setuptools_scm"] |
11 | | - |
12 | | -setup( |
13 | | - author="Nikhil Dhandre", |
14 | | - |
15 | | - classifiers=[ |
16 | | - "Natural Language :: English", |
17 | | - "Programming Language :: Python :: 3.5", |
18 | | - "Programming Language :: Python :: 3.6", |
19 | | - "Programming Language :: Python :: 3.7", |
20 | | - "Intended Audience :: End Users/Desktop", |
21 | | - "Intended Audience :: Developers", |
22 | | - "Environment :: Console", |
23 | | - ], |
24 | | - python_requires=">=3.5", |
25 | | - description="Simple text/ markdown links status checker", |
26 | | - entry_points={"console_scripts": ["linkstatus=linkstatus.linkstatus:main"]}, |
27 | | - install_requires=install_requirements, |
28 | | - long_description=readme, |
29 | | - long_description_content_type="text/markdown", |
30 | | - include_package_data=True, |
31 | | - setup_requires=setup_requirements, |
32 | | - use_scm_version=True, |
33 | | - keywords=["linkstatus", "linkchecker", "link-checker", "markdown", "text", "linklint", "link"], |
34 | | - name="linkstatus", |
35 | | - packages=find_packages(include=["linkstatus"]), |
36 | | - url="https://github.com/pythonpune/linkstatus", |
37 | | - license="GPLv3", |
38 | | - zip_safe=False, |
39 | | -) |
| 3 | +setuptools.setup(use_scm_version=True,) |
0 commit comments