forked from developmentseed/python-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (41 loc) · 1.36 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
35
36
37
38
39
40
41
42
43
44
45
46
"""Setup python-seed"""
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
# Runtime requirements.
inst_reqs = [
"click",
"importlib_resources>=1.1.0;python_version<'3.9'",
]
extra_reqs = {
"test": ["pytest", "pytest-cov"],
"dev": ["pytest", "pytest-cov", "pre-commit"],
}
setup(
name="python-seed",
version="1.1.1",
description="Create skeleton of python project",
long_description=readme,
long_description_content_type="text/markdown",
author=u"Vincent Sarago",
author_email="[email protected]",
url="https://github.com/developementseed/python-seed",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="Python Generator tox pre-commit",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=False,
install_requires=inst_reqs,
extras_require=extra_reqs,
entry_points={"console_scripts": ["pyseed = python_seed.scripts.cli:pyseed"]},
)