-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 944 Bytes
/
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
import setuptools
from asgard._version import __version__
setuptools.setup(
name="asgard",
version=__version__,
description="ASGARD: SemVer Generator and Release Dispatcher",
long_description=open("README.md").read(),
long_description_type="text/markdown",
author="Claude Léveillé",
url="https://github.com/claudeleveille/asgard",
packages=setuptools.find_packages(),
scripts=["bin/asgard"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
],
)