-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (42 loc) · 1.31 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
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"Setup for brainmaze-zmq "
from os import path
from setuptools import find_packages, setup
NAME='brainmaze-zmq'
DESCRIPTION='Utils for around zmq supporting multiprocess communication'
EMAIL='mivalt.filip@mayo.edu'
AUTHOR='Filip Mivalt'
VERSION='0.0.1'
REQUIRES_PYTHON = '>=3.9.0'
URL=''
PACKAGES = find_packages()
REQUIRED = []
# if requirements.txt exists, use it to populate the REQUIRED list
if path.exists('./requirements.txt'):
with open('./requirements.txt') as f:
REQUIRED = f.read().splitlines()
here = path.abspath(path.dirname(__file__))
print(f'Installing {NAME}')
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
install_requires=REQUIRED,
packages=PACKAGES,
python_requires=REQUIRES_PYTHON,
include_package_data=True,
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent'
],
)