You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
smart-top/setup.py

26 lines
892 B
Python

"""
"""
from setuptools import setup, find_packages
import os
import sys
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
args = {
"name":"smart-top",
"version":"1.0.2",
"author":"The Phi Technology LLC","author_email":"info@the-phi.com",
"license":"MIT",
"packages":["smart","smart.top","smart.folder","smart.logger"]}
args["keywords"]=['mongodb','couchdb','rabbitmq','file','read','write','s3','sqlite']
args["install_requires"] = ['pandas','numpy','requests',"git+https://dev.the-phi.com/git/steve/data-transport"]
args["url"] = "https://dev.the-phi.com/git/steve/smart-top.git"
#
#@TODO:
# How to run this from the command line (and submit the data to [file,url,mongodb,couchdb,s3])
#
if sys.version_info[0] == 2 :
args['use_2to3'] = True
args['use_2to3_exclude_fixers']=['lib2to3.fixes.fix_import']
setup(**args)