forked from nous-consulting/basecamp-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 978 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
27
28
29
30
31
32
33
34
35
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
required = ['requests>=1.1.0',
'requests-oauth2>=0.2.0']
setup(
name='basecampx',
version='0.1.7',
author='Rimvydas Naktinis',
author_email='naktinis@gmail.com',
description=('Wrapper for Basecamp Next API.'),
license="MIT",
keywords="basecamp bcx api",
url='https://github.com/nous-consulting/basecamp-next',
packages=['basecampx'],
install_requires=required,
long_description=read('README.rst'),
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7'
],
)