-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (58 loc) · 1.56 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
# Bootstrap installation of Distribute
import distribute_setup
distribute_setup.use_setuptools()
import os
from setuptools import setup, find_packages
PROJECT = 'coop'
VERSION = open('VERSION').read().strip()
URL = ''
AUTHOR = 'Juan Manuel Schillaci'
AUTHOR_EMAIL = '[email protected]'
DESC = 'Automation Build, Publish and Documentation tool for Python projects, Highly extensible'
def read_file(file_name):
file_path = os.path.join(
os.path.dirname(__file__),
file_name
)
return open(file_path).read()
setup(
name=PROJECT,
version=VERSION,
description=DESC,
long_description=read_file('README'),
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=read_file('LICENSE'),
namespace_packages=[],
#packages=['coop', 'coop.lib', 'coop.tests'],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
dependency_links=[
'https://github.com/stumitchell/skeleton#egg=skeleton'
],
install_requires=[
'skeleton',
'virtualenvwrapper',
'Yapsy==1.10.223',
'argparse==1.2.1',
'doit==0.24.0',
'mock==1.0.1',
'nose==1.3.0',
'pyinotify==0.9.4',
'six==1.5.1',
'pew==0.1.9',
# -*- Required files -*-
],
entry_points = {
'console_scripts':
['coop = coop.main:main']
},
classifiers=[
# see http://pypi.python.org/pypi?:action=list_classifiers
# -*- Classifiers -*-
"Programming Language :: Python",
],
)