-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
47 lines (41 loc) · 1.19 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
45
46
47
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'tiendanube',
packages = [
'tiendanube',
'tiendanube.resources',
],
version = '1.1',
description = '',
license = 'MIT',
long_description = read('README.rst'),
url = 'https://github.com/catalanojuan/tiendanube-python',
download_url = 'https://github.com/catalanojuan/tiendanube-python/tarball/1.1',
author = 'Juan Catalano',
author_email = '[email protected]',
install_requires = [
"argparse==1.2.1",
"bunch==1.0.1",
"furl==0.3.4",
"ipython==1.0.0",
"mock==1.0.1",
"orderedmultidict==0.7.1",
"py==1.4.15",
"pytz==2013b",
"requests==1.2.3",
"wsgiref==0.1.2",
],
classifiers = (
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
)