forked from quantopian/alphalens
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef7d3d1
commit 5328a87
Showing
1 changed file
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=() | ||
) |