-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 902 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 902 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
# -*- coding: utf-8 -*-
import sys
try:
from distutils.core import setup
from setuptools import find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
else:
REQUIRES = [
'colorama', 'keyring', 'requests'
]
setup(
name='stash',
version='0.3',
entry_points = {
'console_scripts': ['stash=stash.stash:main']
},
description='Stash - Put Your Stuff Here',
license='Apache License 2.0',
url='github.com/painterjd/stash',
author='Jamie Painter',
author_email='jamie.painter@rackspace.com',
include_package_data=True,
install_requires=REQUIRES,
test_suite='stash',
zip_safe=False,
data_files=[],
packages=find_packages(exclude=['tests*', 'stash/tests*'])
)