-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 1006 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
# -*- coding: utf-8 -*-
from setuptools import setup
from pip.req import parse_requirements
_VERSION = '0.1.8'
install_reqs = parse_requirements('requirements.txt', session='hack')
requirements = [str(ir.req) for ir in install_reqs]
setup(
name = 'bibliothequetoulouse',
packages = ['bibliothequetoulouse'],
version = _VERSION,
license='MIT',
platforms='Posix; MacOS X',
description = 'Package pour interroger le catalogue des bibliothèques de Toulouse',
author = 'Thibault Ducret',
author_email = '[email protected]',
url = 'https://github.com/thibdct/bibliotheque-toulouse-python',
download_url = 'https://github.com/thibdct/bibliotheque-toulouse-python/tarball/%s' % (_VERSION), # I'll explain this in a second
keywords = ['api', 'bibliothèque', 'toulouse'],
setup_requires=requirements,
install_requires=requirements,
classifiers = ['Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'],
tests_require=['pytest'],
)