-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (39 loc) · 1.39 KB
/
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
38
39
40
41
42
43
44
45
#!/usr/bin/env python
'''The setup and build script for the twingly-search library.'''
import os
from setuptools import setup, find_packages
if 'GENERATE_RST' in os.environ:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
else:
readme_file = open('README.md', 'r')
long_description = readme_file.read()
readme_file.close()
with open('requirements.txt') as fp:
install_requires = fp.readlines()
setup(
name='twingly-search',
version='2.1.4',
author='Twingly AB',
author_email='[email protected]',
license='MIT',
url='https://github.com/twingly/twingly-search-api-python',
keywords='twingly',
description='Python library for Twingly Search API',
long_description=long_description,
packages=find_packages(exclude=['tests*']),
install_requires=install_requires,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)