-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 876 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
from setuptools import setup
with open('requirements.txt', 'rt') as f:
install_requires = [line.strip() for line in f.readlines()]
with open('README.md', 'rt') as f:
long_description = f.read()
setup(
name='localise',
version='0.1.0', # Update the version number for new releases
url='https://git.fmrib.ox.ac.uk/yqzheng1/python-localise',
license='MIT',
author='Ying-Qiu Zheng',
author_email='ying-qiu.zheng@ndcn.ox.ac.uk',
description='A Python package for localisation',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['localise',],
scripts=[
'scripts/localise',
'scripts/create_masks',
'scripts/create_tracts',
'scripts/connectivity_driven'
],
install_requires=install_requires,
python_requires='>=3.7',
)