forked from marazt/object-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (34 loc) · 1.08 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
42
43
44
# coding=utf-8
"""
Package setup configuration needed for correct package creation
Taken from: https://www.digitalocean.com/community/tutorials/how-to-package-and-distribute-python-applications
"""
from distutils.core import setup
setup(
# Application name:
name="object-mapper",
# Version number (initial):
version="1.0.3",
# Application author details:
author="marazt",
author_email="marazt@gmail.com",
# Packages
packages=[
"mapper",
"tests",
],
# Include additional files into the package
include_package_data=True,
# Details
url="https://github.com/marazt/object-mapper",
#
license="LICENSE.txt",
description="ObjectMapper is a class for automatic object mapping. It helps you to create objects between\
project layers (data layer, service layer, view) in a simple, transparent way.",
# long_description=open("README.txt").read(),
# Dependent packages (distributions)
install_requires=[
"datetime",
"nose",
],
)