-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (28 loc) · 930 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (28 loc) · 930 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
29
30
31
32
33
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
"""
Returns the contents of the file in the top level directory with the name
``fname``.
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "MangoEngine",
version = read("VERSION").strip(),
author = "John Sullivan",
author_email = "john@galahgroup.com",
description = "MangoEngine is a lightweight library for creating generic "
"data models in Python.",
license = "Unlicense",
keywords = "json python models",
url = "https://www.github.com/brownhead/mangoengine",
packages = find_packages(),
long_description = read("README.rst"),
classifiers = [
"License :: Public Domain",
],
# This ensures that the MANIFEST.IN file is used for both binary and source
# distributions.
include_package_data = True
)