-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (26 loc) · 874 Bytes
/
setup.py
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
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as reqs:
requirements = [r.strip() for r in reqs.readlines()]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='saffy',
packages=find_packages(),
version='0.1.12-dev2',
license='MIT',
description='Signal Analysis Framework For You',
author='Paweł A. Pierzchlewicz',
author_email='[email protected]',
url='https://github.com/PPierzc/saffy',
keywords=['python', 'signal', 'analysis', 'EEG', 'neuroinformatics'],
install_requires=requirements,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
)