-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 856 Bytes
/
setup.py
File metadata and controls
36 lines (30 loc) · 856 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
29
30
31
32
33
34
35
36
# -*- coding: utf-8 -*-
"""Setup file for the avaframe package.
important commands:
python setup.py sdist
python setup.py build_ext --inplace
python setup.py bdist_wheel
twine uploade dist/*
To create a release (with github):
- update the version number below
- push to github
- create a release there
- run releaseWithMany.. in the actions tab
"""
# from setuptools import setup, find_packages # Always prefer setuptools
from setuptools import Extension, setup, find_packages
from pathlib import Path
import sys
sys.path.append(str(Path(__file__).parent))
setup(
# Find packages automatically
packages=find_packages(exclude=["docs"]),
# Include package data
include_package_data=True,
# Run build_ext
# options=setup_options,
# Executable scripts
entry_points={},
zip_safe=False,
# ext_modules=extensions,
)