-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 959 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
from setuptools import setup
setup(
name="pycombine",
packages=["pycombine"],
version="1.0",
license="GPLv3",
description="Combine files together",
long_description="On your Command line / bar, just type in `pycombine main_file [file ...]`. For example, "
"`pycombine main.py partone.py parttwo.py`. Github is "
"https://github.com/jackprogramsjp/pycombine.",
long_description_content_type="text/markdown",
author="Jack Murrow",
author_email="[email protected]",
url="https://github.com/jackprogramsjp/pycombine",
keywords=["Python Combine", "Combine", "PyCombine"],
entry_points={
"console_scripts": [
"pycombine = pycombine.pycombine:pycombine"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
)