-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (22 loc) · 835 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (22 loc) · 835 Bytes
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
from __future__ import unicode_literals
from io import open
from setuptools import setup
from minibelt import __version__
open("MANIFEST.in", "w").write("\n".join(("include *.rst",)))
setup(
name="minibelt",
version=__version__,
author="Sam et Max",
py_modules=["minibelt"],
author_email="lesametlemax@gmail.com",
description="One-file utility module filled with helper functions for day to day Python programming",
long_description=open("README.rst", "r", encoding="utf-8").read(),
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: zlib/libpng License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
],
url="https://github.com/sametmax/minibelt",
)