forked from nanvel/aiobittrex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (49 loc) · 1.75 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
# -*- encoding: utf-8 -*-
"""
Python setup file.
In order to register your app at pypi.python.org, create an account at
pypi.python.org and login, then register your new app like so:
python setup.py register
If your name is still free, you can now make your first release but first you
should check if you are uploading the correct files:
python setup.py sdist
Inspect the output thoroughly. There shouldn't be any temp files and if your
app includes staticfiles or templates, make sure that they appear in the list.
If something is wrong, you need to edit MANIFEST.in and run the command again.
If all looks good, you can make your first release:
python setup.py sdist upload
For new releases, you need to bump the version number in
tornado_botocore/__init__.py and re-run the above command.
For more information on creating source distributions, see
http://docs.python.org/2/distutils/sourcedist.html
Upload to PyPI using twine:
python setup.py bdist_wheel --universal
python setup.py sdist
twine upload dist/*
"""
import os
from setuptools import setup, find_packages
def read(file_name):
try:
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
except IOError:
return ''
setup(
name="aiobittrex",
version='0.1.1',
description="Async Bittrex api wrapper.",
long_description=read('README.rst'),
license='The MIT License',
platforms=['OS Independent'],
keywords='async, bittrex',
author='Oleksandr Polieno',
author_email='[email protected]',
url="https://github.com/nanvel/aiobittrex",
packages=find_packages(),
package_data={'': ['requirements.txt']},
include_package_data=True,
install_requires=[
'aiohttp==3.5.4',
'asyncio-throttle==0.1.1'
]
)