Skip to content
Snippets Groups Projects
Commit 6b2ebac8 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

rename. add setup

parent 748c49e6
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,6 @@
__version__ = '0.1.0'
# The top-level __init__.py can
# be used to set up the overall
# namespace for your library.
# make myfunction available
# at the package-level
from .mymodule import myfunction
#!/usr/bin/env python
from setuptools import setup
from mypackage import __version__
with open('requirements.txt', 'rt') as f:
requirements = [l.strip() for l in f.readlines()]
setup(
name='Example project',
description='Example Python project for PyTreat',
url='https://git.fmrib.ox.ac.uk/fsl/pytreat-2018-practicals/',
author='Paul McCarthy',
author_email='pauldmccarthy@gmail.com',
license='Apache License Version 2.0',
version=__version__,
install_requires=requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment