-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (29 loc) · 788 Bytes
/
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
from setuptools import setup, find_packages
from jtrader.core.version import get_version
VERSION = get_version()
f = open('README.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()
setup(
name='jtrader',
version=VERSION,
description='Trade them thangs',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Andres OBrien',
author_email='oban0601@gmail.com',
url='https://github.com/javabudd/jtrader',
license='unlicensed',
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={
'jtrader': [
'templates/*',
'files/*'
]
},
include_package_data=True,
entry_points="""
[console_scripts]
jtrader = jtrader.main:main
""",
)