Skip to content

Commit

Permalink
Package project in order to upload to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
sinall committed Nov 30, 2016
1 parent e0d12a5 commit f0ed6e0
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LICENSE → LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016 Rui Gao
Copyright (c) 2016 sinall

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include LICENSE.txt
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
63 changes: 63 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages
from codecs import open
from os import path

here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='shipane_sdk',

version='1.0.0.a1',

description=u'实盘易(ShiPanE)Python SDK,通达信自动化交易 API。',
long_description=long_description,

url='https://github.com/sinall/ShiPanE-Python-SDK',

author='sinall',
author_email='[email protected]',

license='MIT',

classifiers=[
'Development Status :: 3 - Alpha',

'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial :: Investment',

'License :: OSI Approved :: MIT License',

'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],

keywords='ShiPanE SDK 通达信 TDX Automation',

packages=find_packages(exclude=['contrib', 'docs', 'tests']),

install_requires=['requests', 'six'],

extras_require={
'dev': [],
'test': [],
},

package_data={
},

data_files=[],

entry_points={
'console_scripts': [
],
},
)

0 comments on commit f0ed6e0

Please sign in to comment.