-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 667 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 667 Bytes
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
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
version = '1.0.1'
setup(
name='obur',
version=version,
packages=['obur'],
install_requires=[
'requests>=2',
],
include_package_data=True,
license='BSD License',
description='A minimalistic speed test library.',
long_description=README,
keywords='speedtest speed obur puke',
url='https://github.com/muraty/obur',
author='Omer Murat Yildirim',
author_email='omermuratyildirim@gmail.com',
entry_points={
'console_scripts': [
'obur = obur.cli:main',
]
}
)