-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Description
https://pythonhosted.org/setuptools/setuptools.html
Maybe something like:
cat > setup.py << EOF
#!/usr/bin/env %{__python2}
# - coding: utf-8 -
import os
from setuptools import setup
setup(
name = "%{name}",
version = "%{version}git%{scommit}",
author = "Toms Bauģis",
author_email = "toms.baugis at gmail.com",
description = ("%{summary}"),
license = "%{license}",
keywords = "",
url = "%{url}",
packages=['%{name}', '%{name}.lib'],
long_description=open(os.path.join(os.path.dirname(__file__), '%{readme}')).read(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment",
"License :: OSI Approved :: %{licence} License",
],
)
EOF
Metadata
Metadata
Assignees
Labels
No labels