-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
25 lines (22 loc) · 825 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
requirements = open('requirements.txt').read().splitlines()
long_description = open('README.rst').read()
setup(
name='finch',
version='0.4.0',
description='Asynchronous RESTful API consumer for Python',
long_description=long_description,
author='Jaime Gil de Sagredo Luna',
author_email='[email protected]',
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)