-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 908 Bytes
/
setup.py
File metadata and controls
32 lines (25 loc) · 908 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
31
32
"""bvbabel setup.
To install, using the command line do:
pip install -e /path/to/bvbabel
Notes for PyPI (OLD, does not work anymore):
python setup.py sdist upload -r pypitest
python setup.py sdist upload -r pypi
Notes for PyPI (NEW, works):
python setup.py sdist bdist_wheel
twine upload --repository testpypi dist/*
twine upload --repository pypi dist/*
"""
from setuptools import setup
VERSION = '0.3.0'
setup(name='bvbabel',
version=VERSION,
description='A lightweight Python library for reading and writing BrainVoyager file formats.',
url='https://github.com/ofgulban/bvbabel',
download_url=('https://github.com/ofgulban/bvbabel/archive/'
+ VERSION + '.tar.gz'),
author='Omer Faruk Gulban',
author_email='gulban@brainvoyager.com',
license='MIT',
packages=['bvbabel'],
install_requires=['numpy'],
zip_safe=False)