-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 912 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 912 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
import os, sys
from setuptools import setup, find_packages
VERSION = '0.1.0'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
setup(name = 'ploud.utils',
version = VERSION,
description = 'ploud infrastructure utils',
long_description = README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
],
author = 'Nikolay Kim',
author_email = 'Nikolay Kim <nikolay@enfoldsystems.com>',
url = 'http://www.enfoldsystems.com',
packages = find_packages(),
namespace_packages = ['ploud'],
zip_safe = False,
include_package_data = True,
install_requires = [
'setuptools',
'psycopg2',
'ptah',
],
entry_points = {
'ptah': ['package = ploud.utils'],
},
)