-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 711 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
import sys, os
setup(
name = 'forge',
version = '0.0.1',
description = "Simple object forger for unit testing.",
long_description = "Simple object forger for unit testing.",
author = 'Matte Noble',
author_email = 'me@mattenoble.com',
url = 'http://mattenoble.com',
packages = find_packages(exclude=['ez_setup', 'examples', 'tests', '.build']),
include_package_data = True,
zip_safe = False,
setup_requires = [
"nose >= 1.0.0",
"unittest2 >= 0.5.1",
"sqlalchemy >= 0.6.6",
]
)