From 51088a0e90ad8032bbc071ad11b45189d40c832b Mon Sep 17 00:00:00 2001 From: Jianfeng Date: Sat, 14 Jan 2017 17:30:59 -0500 Subject: [PATCH] update --- setup.py | 82 +++++++++----------------------------------------------- 1 file changed, 13 insertions(+), 69 deletions(-) diff --git a/setup.py b/setup.py index eb6ef31..43fe354 100755 --- a/setup.py +++ b/setup.py @@ -1,71 +1,6 @@ -# """A setuptools based setup module for LACE""" -# #!/usr/bin/env python -# # -*- coding: utf-8 -*- - -# from codecs import open -# from os import path -# from setuptools import setup, find_packages - -# import versioneer, sys - -# here = path.abspath(path.dirname(__file__)) - -# with open(path.join(here, 'README.rst'), encoding='utf-8') as readme_file: -# readme = readme_file.read() - -# with open(path.join(here, 'HISTORY.rst'), encoding='utf-8') as history_file: -# history = history_file.read().replace('.. :changelog:', '') - -# requirements = [ -# 'click', -# 'numpy' -# ] - -# test_requirements = [ -# ] - -# # The source dist comes with batteries included, the wheel can use pip to get the rest -# is_wheel = 'bdist_wheel' in sys.argv - -# excluded = [] -# if is_wheel: -# excluded.append('extlibs.future') - - -# setup( -# name='lace', -# # version=versioneer.get_version(), -# # cmdclass=versioneer.get_cmdclass(), -# version = '1.0.1', - -# description=" Lace-scale Assurance of Confidentiality Environment", -# long_description=readme + '\n\n' + history, -# author="Jianfeng Chen", -# author_email='jchen37@ncsu.edu', -# url='https://github.com/ginfung/LACE', - -# packages=find_packages(exclude=['contrib', 'docs', 'tests']), -# entry_points={ -# 'console_scripts':[ -# 'LACE=lace.cli:', -# ], -# }, -# # scripts=['lace/'], -# # include_package_data=True, -# install_requires=requirements, -# license="MIT", -# classifiers=[ -# 'Development Status :: 4 - Beta', -# 'Topic :: Database', -# 'Intended Audience :: Developers', -# 'License :: OSI Approved :: MIT License', -# 'Natural Language :: English', -# "Programming Language :: Python :: 2", -# 'Programming Language :: Python :: 2.7', -# ], -# test_suite='tests', -# tests_require=test_requirements, -# ) +"""A setuptools based setup module for LACE""" +#!/usr/bin/env python +# -*- coding: utf-8 -*- from distutils.core import setup from codecs import open @@ -98,5 +33,14 @@ license= 'MIT', - install_requires = requirements + install_requires = requirements, + classifiers=[ + 'Development Status :: 4 - Beta', + 'Topic :: Database', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Natural Language :: English', + "Programming Language :: Python :: 2", + 'Programming Language :: Python :: 2.7', + ], ) \ No newline at end of file