-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1.06 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
"""Setup file for ProgramVer."""
from setuptools import setup, find_packages
def readme():
"""Reads the README.md file."""
with open("README.md", encoding="UTF-8") as f:
return f.read()
setup(
name="programver",
version="1.9.0",
description="A Python version of Microsoft's 'winver', \
built to be customizable, and to show copyright info and licenses.",
long_description=readme(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: User Interfaces",
],
keywords="program version windows winver microsoft license gui",
url="https://github.com/Dog-Face-Development/ProgramVer",
author="willtheorangeguy",
packages=find_packages(where="imgs"),
package_dir={"": "imgs"},
include_package_data=True,
py_modules=["main"],
entry_points={"console_scripts": ["programver=main:ProgramVer"]},
)