|
1 |
| -#!/usr/bin/env python |
2 |
| - |
3 |
| -from setuptools import setup, find_packages |
4 |
| - |
5 |
| -install_requires = [ |
6 |
| - 'websocket-client>=0.40.0', |
7 |
| - 'protobuf' |
8 |
| -] |
9 |
| - |
10 |
| -tests_require = [ |
11 |
| - 'pytest', |
12 |
| - 'python-dateutil>=2.7.5', |
13 |
| -] |
14 |
| - |
15 |
| -with open("README.md", "r") as fh: |
16 |
| - long_description = fh.read() |
17 |
| - |
18 |
| -setup( |
19 |
| - name='openfeed', |
20 |
| - version='1.1.0', |
21 |
| - author='Barchart', |
22 |
| - |
23 |
| - license='MIT', |
24 |
| - url='https://github.com/openfeed-org/sdk-python', |
25 |
| - include_package_data=True, |
26 |
| - packages=find_packages(), |
27 |
| - install_requires=install_requires, |
28 |
| - tests_require=tests_require, |
29 |
| - extras_require={ |
30 |
| - 'test': tests_require |
31 |
| - }, |
32 |
| - description='Barchart Openfeed Example Client for Python', |
33 |
| - long_description=long_description, |
34 |
| - long_description_content_type='text/markdown', |
35 |
| - download_url='https://github.com/openfeed-org/sdk-python/archive/master.zip', |
36 |
| - keywords=[] |
37 |
| -) |
| 1 | +#!/usr/bin/env python |
| 2 | + |
| 3 | +from setuptools import setup, find_packages |
| 4 | + |
| 5 | +install_requires = [ |
| 6 | + 'websocket-client>=0.40.0', |
| 7 | + 'protobuf' |
| 8 | +] |
| 9 | + |
| 10 | +tests_require = [ |
| 11 | + 'pytest', |
| 12 | + 'python-dateutil>=2.7.5', |
| 13 | +] |
| 14 | + |
| 15 | +with open("README.md", "r") as fh: |
| 16 | + long_description = fh.read() |
| 17 | + |
| 18 | +setup( |
| 19 | + name='openfeed', |
| 20 | + version='1.1.1', |
| 21 | + author='Barchart', |
| 22 | + |
| 23 | + license='MIT', |
| 24 | + url='https://github.com/openfeed-org/sdk-python', |
| 25 | + include_package_data=True, |
| 26 | + packages=find_packages(), |
| 27 | + install_requires=install_requires, |
| 28 | + tests_require=tests_require, |
| 29 | + extras_require={ |
| 30 | + 'test': tests_require |
| 31 | + }, |
| 32 | + description='Barchart Openfeed Example Client for Python', |
| 33 | + long_description=long_description, |
| 34 | + long_description_content_type='text/markdown', |
| 35 | + download_url='https://github.com/openfeed-org/sdk-python/archive/master.zip', |
| 36 | + keywords=[] |
| 37 | +) |
0 commit comments