Created
July 8, 2018 01:13
-
-
Save doaa-altarawy/fe7cd001a5ca8f6be61f534b6d417c18 to your computer and use it in GitHub Desktop.
setup file sample
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
import setuptools | |
if __name__ == "__main__": | |
setuptools.setup( | |
name='RTP_python_template', | |
version="0.3.0", | |
description='A starting template for Python programs', | |
author='Doaa Altarawy', | |
author_email='[email protected]', | |
url="https://github.com/doaa-altarawy/RTP_python_template", | |
license='BSD-3C', | |
packages=setuptools.find_packages(), | |
install_requires=[ | |
'numpy>=1.7', | |
], | |
extras_require={ | |
'docs': [ | |
'sphinx==1.2.3', # autodoc was broken in 1.3.1 | |
'sphinxcontrib-napoleon', | |
'sphinx_rtd_theme', | |
'numpydoc', | |
], | |
'tests': [ | |
'pytest>=3.0', | |
'codecov', | |
'pytest-cov', | |
'pytest-pep8', | |
], | |
}, | |
# tests_require=[ | |
# 'pytest', | |
# 'pytest-cov', | |
# 'pytest-pep8', | |
# ], | |
classifiers=[ | |
'Development Status :: 4 - Beta', | |
'Intended Audience :: Science/Research', | |
'Programming Language :: Python :: 2.7', | |
'Programming Language :: Python :: 3.5', | |
], | |
zip_safe=True, | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment