forked from stravalib/stravalib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (56 loc) · 1.99 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
import os.path
import re
import warnings
from pip.req import parse_requirements
from setuptools import setup, find_packages
version = '0.6.3'
news = os.path.join(os.path.dirname(__file__), 'docs', 'news.rst')
news = open(news).read()
parts = re.split(r'([0-9\.]+)\s*\n\r?-+\n\r?', news)
found_news = ''
for i in range(len(parts) - 1):
if parts[i] == version:
found_news = parts[i + i]
break
if not found_news:
warnings.warn('No news for this version found.')
long_description = """
stravalib is a Python 2.7 and 3.x library that provides a simple API for interacting
with the Strava activity tracking website.
"""
if found_news:
title = 'Changes in %s' % version
long_description += '\n%s\n%s\n' % (title, '-' * len(title))
long_description += found_news
# parse_requirements() returns generator of pip.req.InstallRequirement objects
install_reqs = parse_requirements(os.path.join(os.path.dirname(__file__), 'requirements.txt'), session=False)
# reqs is a list of requirement
# e.g. ['django==1.5.1', 'mezzanine==1.4.6']
reqs = [str(ir.req) for ir in install_reqs]
setup(
name='stravalib',
version=version,
author='Hans Lellelid',
author_email='[email protected]',
url='http://github.com/hozn/stravalib',
license='Apache',
description='Python library for interacting with Strava v3 REST API',
long_description=long_description,
packages=find_packages(),
include_package_data=True,
package_data={'stravalib': ['tests/resources/*']},
install_requires=reqs,
tests_require=['nose>=1.0.3'],
test_suite='stravalib.tests',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=True
)