-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (29 loc) · 925 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (29 loc) · 925 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
30
31
#!/usr/bin/env python
''' Package cryptomate '''
from setuptools import setup, find_packages
import cryptomate
setup(
name='cryptomate',
version='%d.%d.%d' % cryptomate.__VERSION__,
author='Julien Hartmann',
url='https://github.com/solid-abstractions/cryptomate/',
description='Automated trading engine',
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Office/Business :: Financial',
],
packages=find_packages(exclude=('tests', 'tests.*')),
entry_points={
'console_scripts': [
'cryptomate = cryptomate.run:main',
],
},
python_requires='>=3.5',
install_requires=[
],
tests_require=['pytest', 'pytest-asyncio'],
)