-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.32 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
#!/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-bootstrap",
version=_VERSION,
package_dir={"": "lib"},
packages=find_packages("lib"),
install_requires=[
"dev-pipeline-configure >= {}".format(_VERSION),
"dev-pipeline-core >= {}".format(_VERSION),
"dev-pipeline-build >= {}".format(_VERSION),
"dev-pipeline-scm >= {}".format(_VERSION),
],
entry_points={
"devpipeline.drivers": [
"bootstrap = devpipeline_bootstrap.bootstrap:_BOOTSTRAP_COMMAND"
]
},
author="Stephen Newell",
description="build tooling 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-bootstrap",
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 :: Build Tools",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
],
)