-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 994 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 994 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
# -*- coding: utf-8 -*-
from setuptools import setup
long_description = open("README.md").read()
setup(
name = "PyOSB",
version = '0.5.2',
packages = ['osb', 'osb.metadata', 'osb.resources', 'osb.utils'],
author = "Padraig Gleeson, Richard Gerkin",
author_email = "p.gleeson@gmail.com",
description = "A Python library for interacting with Open Source Brain version 1",
long_description = long_description,
license = "GPLv3",
url="https://github.com/OpenSourceBrain/OSB_API",
install_requires=["lxml"],
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GPLv3 License',
'Natural Language :: English',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
'Topic :: Scientific/Engineering']
)