-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (38 loc) · 1.24 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
from setuptools import find_packages, setup
from packthing import __version__
with open("README.rst") as f:
long_description = f.read()
setup(
name="packthing",
version=__version__,
author="LameStation",
author_email="[email protected]",
description="Write once, package everywhere",
long_description=long_description,
license="GPLv3",
url="https://github.com/lamestation/packthing",
keywords="packaging qt qmake building distribution",
packages=find_packages(exclude=["test"]),
include_package_data=True,
entry_points={
"console_scripts": [
"packthing = packthing.main:console",
],
},
install_requires=[
"pyyaml",
"dmgbuild; sys_platform == 'darwin'",
],
test_suite="test",
classifiers=[
"Environment :: Console",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Code Generators",
"Topic :: System :: Archiving :: Packaging",
"Topic :: Utilities",
],
)