-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (35 loc) · 1.21 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
#!/usr/bin/env python
# This file is part of metamodule
# Copyright (C) 2015 Nathaniel Smith <njs@pobox.com>
# See file LICENSE for license information.
import sys
from setuptools import setup
DESC = """A tiny Python module that lets you take more control of your
library's public API."""
LONG_DESC = open("README.rst").read()
# For __version__ and __doc__
import metamodule
setup(
name="metamodule",
version=metamodule.__version__,
description=metamodule.__doc__,
long_description=LONG_DESC,
author="Nathaniel J. Smith",
author_email="njs@pobox.com",
license="2-clause BSD",
py_modules=["metamodule"],
url="https://github.com/njsmith/metamodule",
classifiers =
[ "Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)