-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (31 loc) · 885 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
36
37
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import re
with open('fiftythree/__init__.py', 'r') as init_file:
version = re.search(
'^__version__ = [\'"]([^\'"]+)[\'"]',
init_file.read(),
re.MULTILINE,
).group(1)
try:
long_description = open("README.rst").read()
except IOError:
long_description = ''
setup(
name='fiftythree-client',
version=version,
description='A python client for the 53 API provided by ORGANIZE.org',
license='MIT',
author='Dana Spiegel',
author_email='[email protected]',
url='https://github.com/ORGAN-IZE/fiftythree-client',
packages=find_packages(),
long_description=long_description,
install_requires=[
'requests>=2.4',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
]
)