-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 977 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 977 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
34
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='transactpro',
description='TransactPRO Python integration',
long_description=read('README.md'),
author='Olga Zdanchuk',
author_email='zdanchuk@gmail.com',
packages=['transactpro'],
version='0.1',
url='https://github.com/TransactPRO/transactpro-integration-python',
keywords=[],
license='BSD',
install_requires=[
'mock==1.0.1',
'nose==1.3.0',
'coverage==3.7.1',
'pycurl==7.19.3.1',
'wsgiref==0.1.2',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Framework :: Django',
],
)