Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ginfung committed Jan 14, 2017
1 parent 72b095e commit 51088a0
Showing 1 changed file with 13 additions and 69 deletions.
82 changes: 13 additions & 69 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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',
],
)

0 comments on commit 51088a0

Please sign in to comment.