forked from Hyedryn/elikopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.21 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.21 KB
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
import setuptools
import io
try:
with io.open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
except (IOError, OSError) as e:
print(e.errno)
setuptools.setup(
name="elikopy",
packages = ['elikopy'],
license='agpl-3.0',
version="0.2",
author="qdessain, msimon",
author_email="[email protected], [email protected]",
description="A set of tools for analysing dMRI",
url="https://github.com/Hyedryn/elikopy",
download_url = 'https://github.com/Hyedryn/elikopy/archive/refs/tags/v0.2.2.tar.gz',
#packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.7',
install_requires=[
'numpy',
'dipy',
'dmipy',
'lxml',
'PyPDF2',
'fpdf',
'matplotlib',
'cvxpy'
],
)