-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 846 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
27
28
29
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
from load_template import __author__, __version__
setup(
name="load-template",
author=__author__,
author_email="[email protected]",
description="Create a file from the template with the variables.",
version=__version__,
license="MIT License",
url="https://github.com/alice1017/load-template",
packages=["load_template"],
entry_points={
"console_scripts": [
"load-template=load_template.__main__:main"
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Terminals",
"Topic :: Utilities"
]
)