-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 964 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 964 Bytes
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
"""
Copyright 2019 Jason Litzinger
"""
from setuptools import setup, find_packages
setup(
name="psh",
version="0.2.0",
description="A project for manipulating setup.py",
author="Jason Litzinger",
author_email="jlitzingerdev@gmail.com",
package_dir={"": "src"},
classifiers=[ # Optional
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
# Pick your license as you wish
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
keywords="dependency setuptools development",
packages=find_packages(where="src"),
install_requires=["click", "attrs"],
extras_require={"dev": ["pylint", "pytest", "coverage", "black"]},
entry_points={"console_scripts": ["psh=psh:cli"]},
)