-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
48 lines (44 loc) · 1.79 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
top_dir, _ = os.path.split(os.path.abspath(__file__))
if os.path.isfile(os.path.join(top_dir, 'Version')):
with open(os.path.join(top_dir, 'Version')) as f:
version = f.readline().strip()
else:
import urllib
Vpath = 'https://raw.githubusercontent.com/Nikeshbajaj/phyaat/master/Version'
version = urllib.request.urlopen(Vpath).read().strip().decode("utf-8")
setuptools.setup(
name="phyaat",
version= version,
author="Nikesh Bajaj",
author_email="bajaj.nikkey@gmail.com",
description="PhyAAt: Physiology of Auditory Attention",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://phyaat.github.io",
packages=setuptools.find_packages(),
license = 'MIT',
keywords = 'phyaat auditory-attention attention eeg physiological-signals physiology predictive-analysis artifact',
classifiers=[
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
],
project_urls={
'Documentation': 'https://phyaat.readthedocs.io/',
'Say Thanks!': 'https://github.com/Nikeshbajaj',
'Source': 'https://phyaat.github.io',
'Tracker': 'https://github.com/Nikeshbajaj/phyaat/issues',
},
include_package_data=True,
install_requires=['numpy','scipy','matplotlib','spkit']
)