forked from cosmin/stashy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 938 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='stashy',
version="0.2",
description='Python API client for the Atlassian Stash REST API',
long_description=read('README.rst'),
url='http://github.com/RisingOak/stashy',
download_url = 'https://github.com/RisingOak/stashy/tarball/0.1',
author='Cosmin Stejerean',
author_email='cosmin@offbytwo.com',
license='Apache License 2.0',
packages=['stashy', 'stashy.admin'],
test_suite = 'tests',
#scripts=['bin/stash'],
#tests_require=open('test-requirements.txt').readlines(),
install_requires=open('requirements.txt').readlines(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries'
]
)