Skip to content

Commit facbd94

Browse files
committed
added setup.py
1 parent 427800d commit facbd94

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
*.pyc
2+
dist
3+
pyzootool.egg-info

setup.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import os
2+
from setuptools import setup, find_packages
3+
4+
setup(
5+
name = "pyzootool",
6+
version = "0.1",
7+
author = "Mark Rogers",
8+
author_email = "[email protected]",
9+
url = "http://www.f4ntasmic.com",
10+
11+
packages = find_packages('.'),
12+
package_dir = {'':'.'},
13+
data_files=[('.', ['README',]),],
14+
package_data = {
15+
},
16+
include_package_data=True,
17+
18+
keywords = "zootool socialmedia api",
19+
description = "A wrapper of the zootool.com API",
20+
install_requires=[
21+
"httplib2",
22+
],
23+
classifiers = [
24+
"Intended Audience :: Developers",
25+
'Programming Language :: Python',
26+
]
27+
)

0 commit comments

Comments
 (0)