-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (38 loc) · 1.3 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
#!/usr/bin/python3
from setuptools import setup, find_packages
with open("README.rst") as f:
long_description = f.read()
_VERSION = "0.5.0"
setup(
name="dev-pipeline-git",
version=_VERSION,
package_dir={"": "lib"},
packages=find_packages("lib"),
install_requires=[
"dev-pipeline-core >= {}".format(_VERSION),
"dev-pipeline-scm >= {}".format(_VERSION),
],
entry_points={
"devpipeline.scms": ["git = devpipeline_git.git:_GIT_SCM"],
"devpipeline.config_sanitizers": [
"missing-git-uri = devpipeline_git:_check_missing_uri",
"missing-git-revision = devpipeline_git:_check_missing_revision",
],
},
author="Stephen Newell",
description="git plugin for dev-pipeline",
long_description=long_description,
long_description_content_type="text/x-rst",
license="BSD-2",
url="https://github.com/dev-pipeline/dev-pipeline-git",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Utilities",
],
)