Skip to content

Commit

Permalink
install config
Browse files Browse the repository at this point in the history
  • Loading branch information
a-campbell committed Jun 7, 2016
1 parent ef7d3d1 commit 5328a87
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
#!/usr/bin/env python
from distutils.core import setup
from setuptools import setup
import sys

long_description = ''

if 'upload' in sys.argv:
with open('README.md') as f:
long_description = f.read()

setup(
name='pyfactor',
version='0.0.0',
description='Factor analysis tools',
author='Quantopian Inc.',
author_email='[email protected]',
packages=[
'pyfactor',
],
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
'Topic :: Utilities',
],
url='https://github.com/quantopian/pyfactor',
install_requires=()
)
if __name__ == "__main__":
setup(
name='pyfactor',
version='0.0.0',
description='Factor analysis tools',
author='Quantopian Inc.',
author_email='[email protected]',
packages=[
'pyfactor',
],
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
'Topic :: Utilities',
],
url='https://github.com/quantopian/pyfactor',
install_requires=()
)

0 comments on commit 5328a87

Please sign in to comment.